-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqsstack.c
69 lines (69 loc) · 1.13 KB
/
qsstack.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
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
struct Task {
int low, high;
};
struct Task* quickssort(long* arr,long l, long n)
{
if(l<n-1)
{
long i = l + 1;
long j = l + 1;
while (j < n)
{
if (arr[j] < arr[l])
{
long c = arr[i];
arr[i] = arr[j];
arr[j] = c;
i = i + 1;
}
j++;
}
long c = arr[i-1];
arr[i-1] = arr[l];
arr[l] = c;
struct Task* list = malloc(2*sizeof(struct Task));
list[0].low = (int)l;
list[0].high = (int)i-1;
list[1].low= (int)i;
list[1].high = (int)n;
return list;
}
return NULL;
}
int main()
{
int n;
scanf("%d", &n);
long arr[n];
for(int i = 0; i < n; i++)
{
scanf("%ld", &arr[i]);
}
struct Task stack[n];
stack[0].low=0;
stack[0].high=n;
long top = 0;
while(top>=0)
{
struct Task*appst = quickssort(arr, stack[top].low, stack[top].high);
if (appst == NULL) top--;
else
{
stack[top].low=appst[1].low;
stack[top].high=appst[1].high;
top++;
stack[top].low=appst[0].low;
stack[top].high=appst[0].high;
}
}
for(long i = 0; i < n; i++)
{
printf("%ld \n", arr[i]);
}
return 0;
}