-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsort-lines-array.c
128 lines (105 loc) · 2.66 KB
/
sort-lines-array.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 MAXLINES 5000
#define MAXLEN 1000
char *lineptr[MAXLINES];
char lines[MAXLINES][MAXLEN];
int readlines(char lineptr[MAXLINES][MAXLEN], int nlines);
void writelines(char *lineptr[], int nlines);
void qsort(char *lineptr[], int left, int right);
/* sort input lines */
int main()
{
printf("Enter lines, then an empty line.\n");
int nlines; /* number of input lines */
if((nlines = readlines(lines, MAXLINES)) >= 0) {
//can't figure out how to cast, so here's a hack
for(int hack =0; hack < nlines; hack++) {
lineptr[hack] = lines[hack];
}
/* lineptr = lines; */
qsort(lineptr, 0, nlines-1);
/* qsort(lines, 0, nlines-1); */
writelines(lineptr, nlines);
return 0;
} else {
printf("error: input too big to sort\n");
return 1;
}
}
int my_getline(char *, int);
char *alloc(int);
/* readlines: read input lines */
//TODO: do we even need maxlines? I'm confused.
int readlines(char lines[MAXLINES][MAXLEN], int maxlines)
{
int len, nlines;
nlines = 0;
while ((len = my_getline(lines[nlines], MAXLEN)) > 0){
// len + 1 to allocate space for the NULL terminator
if(nlines >= maxlines) {
return -1;
} else {
nlines++;
}
}
return nlines;
}
/* writelines: write output lines */
void writelines(char *lineptr[], int nlines)
{
for(int i = 0; i < nlines; i++) {
printf("-> %s\n", lineptr[i]);
}
}
/* my_getline: read a line into s, return length */
/* or return EOF if EOF received */
/* my_getline:get line into s, return length */
int my_getline(char *s, int lim)
{
char *s_mod = s;
char c;
while(--lim > 0 && (c=getchar()) != EOF && c != '\n') {
*s_mod++ = c;
}
*s_mod = '\0';
return (s_mod - s);
}
#define ALLOCSIZE 10000
static char allocbuf[ALLOCSIZE]; // Storage for alloc
static char *allocp = allocbuf; // Next free position
char *alloc(int n) // Return pointer to n characters
{
if (allocbuf + ALLOCSIZE - allocp >= n) { // it fits
allocp += n;
return allocp - n;
} else
return 0;
}
/* qsort: sort v[left]...v[right] into increasing order */
void qsort(char *v[], int left, int right)
{
int i, last;
void swap(char *v[], int i, int j);
if (left >= right) { /* do nothing if array contains */
return; /* fewer than two elements */
}
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);
}
/* swap; interchange v[i] and v[j] */
void swap(char *v[], int i, int j)
{
char *temp;
temp = v[i];
v[i] = v[j];
v[j] = temp;
}