排序法

排序法

三月 18, 2025

note 快速排序是以雙指標不停逼近,把左邊大於pivot右邊小於pivot的交換,直到指標相同
note 堆排序是不停維護二元樹找最大並移除最大值

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
#include <bits/stdc++.h>
#define N 10
using namespace std;
// 55 6 2 4 1 1000 555 3 7 5655
int s[N+10]={};
int copyy[N+10]={};
void coppy(){
for(int i=0;i<N;i++){
s[i]=copyy[i];
}
}
int part(int L,int R){
int pivot=s[R];
int start=L;
int endd=R;
int temp;
while(start<endd){
while(s[start]<pivot&&start<endd){
start++;
}

while(s[endd]>pivot&&start<endd){
endd--;
}
temp=s[start];
s[start]=s[endd];
s[endd]=temp;
if(start==endd){
return start;
}
}

}
void QS(int L,int R){
if(L<R){
int p=part(L,R);
QS(L,p-1);
QS(p+1,R);
}
}

void Heap(int n,int i){ //tree node:n,operate:i
if(i>=n){
return;
}
int c1=2*i+1;
int c2=2*i+2;
int maxx=i;
int temp;
if(c1<n&&s[c1]>s[maxx]){
maxx=c1;
}
if(c2<n&&s[c2]>s[maxx]){
maxx=c2;
}
if(maxx!=i){
temp=s[maxx];
s[maxx]=s[i];
s[i]=temp;
Heap(n,maxx);
}


}
void build_heap(int n){
int last_node=n-1;
int parent=(last_node-1)/2;
int i;
for(i=parent;i>=0;i--){
Heap(n,i);
}

}
void heap_sort(int n){
build_heap(n);
int i;
int temp;
for(int i=n-1;i>=0;i--){
temp=s[i];
s[i]=s[0];
s[0]=temp;
Heap(i,0);
}


}

int main()
{
//Selection Sort
for(int i=0;i<N;i++){
cin>>s[i];
copyy[i]=s[i];
}
cout<<"Selection Sort\n";
int maxx=0,index=1;
int temp;
bool valid=false;
for(int i=0;i<N;i++){
maxx=s[i];
valid=false;
for(int j=i;j<N;j++){
if(maxx<s[j]){
index=j;
maxx=s[j];
valid=true;
}
}
if(valid){
temp=s[i];
s[i]=s[index];
s[index]=temp;
}
for(int t=0;t<N;t++){
cout<<s[t]<<' ';
}
cout<<'\n';
}

for(int t=0;t<N;t++){
cout<<s[t]<<' ';
}
coppy();
//Bubble Sort
cout<<"\nBubble Sort\n";
for(int i=N-1;i>=0;i--){
for(int j=i;j>=0;j--){
if(s[i]>s[j]){
temp=s[i];
s[i]=s[j];
s[j]=temp;
}
}

for(int t=0;t<N;t++){
cout<<s[t]<<' ';
}
cout<<'\n';
}
for(int t=0;t<N;t++){
cout<<s[t]<<' ';
}
//Insertion Sort
cout<<"\nInsertion Sort\n";
coppy();
for(int i=1;i<N;i++){
maxx=s[i];
index=i;
for(int j=i-1;j>=0;j--){
if(maxx>=s[j]){
temp=s[j];
s[j]=s[index];
s[index]=temp;
index--;
}
}

for(int t=0;t<N;t++){
cout<<s[t]<<' ';
}
cout<<'\n';
}
for(int t=0;t<N;t++){
cout<<s[t]<<' ';
}
//Quick Sort
cout<<"\nQuick Sort\n";
coppy();
QS(0,N-1);
for(int i=0;i<N;i++){
cout<<s[i]<<' ';
}
//Heap Sort
cout<<"\nHeap Sort\n";
coppy();
heap_sort(N);
for(int i=0;i<N;i++){
cout<<s[i]<<' ';
}
return 0;
}