-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathduipaixu.c
256 lines (211 loc) · 4.85 KB
/
duipaixu.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// #include <stdio.h>
// // #define MAX_LEN 17
// //从0开始索引
// // int arr[MAX_LEN] = {
// // 50,40,70,80,60,30,20,100,
// // 90,10,120,130,150,180,190,160,
// // 200,
// // };
// //输入变量1: 父节点
// //输入变量2: 数据总长度
// //根据输入变量,父节点,得到其最大子节点下标
// //如果超出范围,则返回length
// int max_child(int *arr,int father,int length)
// {
// int left;
// int right;
// int temp;
// //如果左节点是最后一个数据,则返回左节点
// if(father*2+2 == length){
// return father*2+1;
// }
// //如果左节点没有数据,则返回length
// if((father*2+1)>=length){
// return length;
// }
// //得到两个节点的数据
// temp = father*2+1; //左节点下标
// left = arr[temp];
// right = arr[temp+1];
// //比较并返回较大数据的下标
// if(left>right){
// return temp;
// }else{
// return temp+1;
// }
// }
// //交换两个数据,输入变量为下标
// void swap(int p1,int p2)
// {
// int temp = arr[p1];
// arr[p1] = arr[p2];
// arr[p2] = temp;
// }
// //输入变量1: 已知有变化,可能不满足大树要求的节点
// //输入变量2: 数据总长度
// //重新整理为完全大树
// void reshape(int node,int length)
// {
// //防止意外..
// while(node<=length)
// {
// //得到子节点较大数据的下标
// int child = max_child(node,length);
// if(child >= length){
// //如果子节点没有数据,则返回
// break;
// }
// //如果子节点比父节点大
// if(arr[node]<arr[child]){
// //则交换父节点与子节点
// swap(node,child);
// //并针对交换下去的父节点再进行判断
// node = child;
// }else{
// //父节点比子节点中较大的数据大,则返回
// break;
// }
// }
// }
// //显示
// // void Display(int comp_count)
// // {
// // int i;
// // for(i=0;i<comp_count;i++){
// // if(i%4 == 0){
// // //控制换行
// // printf("\n");
// // }
// // printf("%4d\t",arr[i]);
// // }
// // }
// //堆排序的逻辑实现
// void heap_sort(int comp_count)
// {
// int i;
// //输出原始数据
// // printf("\nBefore:\n");
// // Display(comp_count);
// for(i=MAX_LEN/2-1;i>=0;i--){
// reshape(i,comp_count);
// };
// //输出构建完第一个树之后的数据
// // printf("\nAfter:Build First\n");
// // Display(comp_count);
// //提取大数,并循环整理
// for(i=comp_count-1;i>0;i--){
// swap(0,i);
// reshape(0,i);
// }
// // printf("\nAfter:Sort\n");
// // Display(comp_count);
// }
//堆排序的实现,自己理解使用...有一些偷懒
#include <stdio.h>
#define MAX_LEN 17
//从0开始索引
int arr[MAX_LEN] = {
50,40,70,80, 60,30,20,100,
90,10,120,130, 150,180,190,160,
200,
};
//输入变量1: 父节点
//输入变量2: 数据总长度
//根据输入变量,父节点,得到其最大子节点下标
//如果超出范围,则返回length
int max_child(int father,int length)
{
int left;
int right;
int temp;
//如果左节点是最后一个数据,则返回左节点
if(father*2+2 == length){
return father*2+1;
}
//如果左节点没有数据,则返回length
if((father*2+1)>=length){
return length;
}
//得到两个节点的数据
temp = father*2+1; //左节点下标
left = arr[temp];
right = arr[temp+1];
//比较并返回较大数据的下标
if(left>right){
return temp;
}else{
return temp+1;
}
}
//交换两个数据,输入变量为下标
void swap(int p1,int p2)
{
int temp = arr[p1];
arr[p1] = arr[p2];
arr[p2] = temp;
}
//输入变量1: 已知有变化,可能不满足大树要求的节点
//输入变量2: 数据总长度
//重新整理为完全大树
void reshape(int node,int length)
{
//防止意外..
while(node<=length)
{
//得到子节点较大数据的下标
int child = max_child(node,length);
if(child >= length){
//如果子节点没有数据,则返回
break;
}
//如果子节点比父节点大
if(arr[node]<arr[child]){
//则交换父节点与子节点
swap(node,child);
//并针对交换下去的父节点再进行判断
node = child;
}else{
//父节点比子节点中较大的数据大,则返回
break;
}
}
}
//显示
void Display(void)
{
int i;
for(i=0;i<MAX_LEN;i++){
if(i%4 == 0){
//控制换行
printf("\n");
}
printf("%4d\t",arr[i]);
}
}
//堆排序的逻辑实现
void heap_sort(void)
{
int i;
//输出原始数据
printf("\nBefore:\n");
Display();
for(i=MAX_LEN/2-1;i>=0;i--){
reshape(i,MAX_LEN);
};
//输出构建完第一个树之后的数据
printf("\nAfter:Build First\n");
Display();
//提取大数,并循环整理
for(i=MAX_LEN-1;i>0;i--){
swap(0,i);
reshape(0,i);
}
printf("\nAfter:Sort\n");
Display();
}
int main(void)
{
heap_sort();
// system("pause");
return 0;
}