-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsort.c
212 lines (172 loc) · 2.76 KB
/
sort.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
#include <stdio.h>
#include <stdlib.h>
#define m 500000 // Consumes 2MB
#define p 333333 // Consumes 4/3 MB
#define o 333334
void swap(int *a, int *b)
{
int n = *b;
*b = *a;
*a = n;
}
void quicksort(int a[], int left, int right)
{
int i = left, j = right;
int pivot = a[(left + right) / 2];
do
{
while (a[i] < pivot && i < right) i++;
while (a[j] > pivot && j > left) j--;
if (i <= j)
{
swap(&a[i], &a[j]);
i++;
j--;
}
} while (i <= j);
if (left < j) quicksort(a, left, j);
if (i < right) quicksort(a, i, right);
}
int midpoint(int imin, int imax)
{
return (imin + imax) / 2;
}
int main()
{
int *a = NULL;
a = (int *) malloc(p * sizeof(int));
// Take first 333333 number
int i;
for (i = 0; i < p; ++i)
{
scanf("%d", &a[i]);
}
quicksort(a, 0, p - 1);
FILE *f1 = fopen("temp1", "w");
for (i = 0; i < p; ++i)
{
fprintf(f1, "%d\n", a[i]);
}
fclose(f1);
// Take next 333333 number
for (i = 0; i < p; ++i)
{
scanf("%d", &a[i]);
}
quicksort(a, 0, p - 1);
FILE *f2 = fopen("temp2", "w");
for (i = 0; i < p; ++i)
{
fprintf(f2, "%d\n", a[i]);
}
fclose(f2);
// Sort last 333334 number
free(a);
a = (int *) malloc(o * sizeof(int));
for (i = 0; i < o; ++i)
{
scanf("%d", &a[i]);
}
quicksort(a, 0, o - 1);
// 2-way merge 2 temp file
f1 = fopen("temp1", "r");
f2 = fopen("temp2", "r");
FILE *f = fopen("temp", "w");
int i1 = 0, // index in f1
i2 = 0; // index in f2
int check = 0;
int i_f1, i_f2;
fscanf(f1, "%d", &i_f1);
fscanf(f2, "%d", &i_f2);
while (i1 < p && i2 < p)
{
if (i_f1 > i_f2)
{
fprintf(f, "%d\n", i_f2);
fscanf(f2, "%d", &i_f2);
++i2;
}
else
{
fprintf(f, "%d\n", i_f1);
fscanf(f1, "%d", &i_f1);
++i1;
}
if (i1 == p)
{
check = 1;
}
if (i2 == p)
{
check = 2;
}
}
if (check == 1)
{
for (; i2 < p; ++i2)
{
fprintf(f, "%d\n", i_f2);
fscanf(f2, "%d", &i_f2);
}
}
if (check == 2)
{
for (; i1 < p; ++i1)
{
fprintf(f, "%d\n", i_f1);
fscanf(f1, "%d", &i_f1);
}
}
fclose(f1);
fclose(f2);
fclose(f);
remove("temp1");
remove("temp2");
// Final merge
f = fopen("temp", "r");
int i3 = 0, // index in f
i4 = 0; // index in a
int i_f;
fscanf(f, "%d", &i_f);
while (i3 < (p + p) && i4 < o)
{
if (i_f > a[i4])
{
printf("%d\n", a[i4]);
++i4;
}
else
{
printf("%d\n", i_f);
fscanf(f, "%d", &i_f);
++i3;
}
if (i3 == (p + p))
{
check = 3;
}
if (i4 == o)
{
check = 4;
}
}
if (check == 3)
{
for (; i4 < o; ++i4)
{
printf("%d\n", a[i4]);
}
}
if (check == 4)
{
for (; i3 < (p + p); ++i3)
{
printf("%d\n", i_f);
fscanf(f, "%d", &i_f);
}
}
fclose(f);
remove("temp");
free(a);
return 0;
}