-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqsort.c
128 lines (109 loc) · 2.58 KB
/
qsort.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
#include <stdio.h>
#include <string.h>
#define MAXLINE 5000
#define ALLOCSIZE 10000
char *lineptr[MAXLINE];
int readlines(char *lineptr[], int nlines);
int readlines2(char *lineptr[], char *linestore, int nlines);
void writelines(char *lineptr[], int nlines);
void qsort(char *lineptr[], int left, int right);
int main(void)
{
int nlines;
char linestore[ALLOCSIZE];
if ((nlines = readlines2(lineptr, linestore, MAXLINE)) >= 0) {
qsort(lineptr, 0, nlines - 1);
writelines(lineptr, nlines);
return 0;
} else {
printf("error: input too big to sort\n");
return 1;
}
}
#define MAXLEN 1000
int _getline(char *, int);
char *alloc(int);
int readlines2(char *lineptr[], char *linestore, int maxlines)
{
int len, nlines;
char *p = linestore;
char line[MAXLEN];
char *linestop = linestore + ALLOCSIZE;
nlines = 0;
while ((len = _getline(line, MAXLEN)) > 0) {
if ((nlines >= maxlines) || (p + len > linestop))
return -1;
else {
line[len - 1] = '\0';
strcpy(p, line);
lineptr[nlines++] = p;
p += len;
}
}
return nlines;
}
int readlines(char *lineptr[], int maxlines)
{
int len, nlines;
char *p, line[MAXLEN];
nlines = 0;
while ((len = _getline(line, MAXLEN)) > 0) {
if ((nlines >= maxlines) || ((p = alloc(len)) == NULL))
return -1;
else {
line[len - 1] = '\0';
strcpy(p, line);
lineptr[nlines++] = p;
}
}
return nlines;
}
int _getline(char *s, int n)
{
int c;
char *tmp = s;
while(n-- > 0 && (c = getchar()) != EOF && c != '\n')
*s++ = c;
if (c == '\n')
*s++ = c;
*s = '\0';
return s - tmp;
}
static char allocbuf[ALLOCSIZE];
static char *allocp = allocbuf;
char *alloc(int n)
{
if (allocbuf + ALLOCSIZE - allocp >= n) {
allocp += n;
return allocp - n;
} else {
return 0;
}
}
void writelines(char *lineptr[], int nlines)
{
while (nlines-- > 0)
printf("%s\n", *lineptr++);
}
void qsort(char *v[], int left, int right)
{
int i, last;
void swap(char *v[], int i, int j);
if (left >= right)
return;
swap(v, left, (left + right) / 2);
last = left;
for (i = left + 1; i <= right; i++)
if (strcmp(v[i], v[left]) < 0)
swap(v, ++last, i);
swap(v, left, last);
qsort(v, left, last - 1);
qsort(v, last + 1, right);
}
void swap(char *v[], int i, int j)
{
char *temp;
temp = v[i];
v[i] = v[j];
v[j] = temp;
}