-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxref.pas
executable file
·298 lines (233 loc) · 8.03 KB
/
xref.pas
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
PROGRAM Xref (input, output);
{Generate a cross-reference listing from a text file.}
CONST
MaxWordLength = 20;
WordTableSize = 500;
NumberTableSize = 2000;
MaxLineNumber = 999;
TYPE
charIndexRange = 1..MaxWordLength;
wordIndexRange = 1..WordTableSize;
numberIndexRange = 0..NumberTableSize;
lineNumberRange = 1..MaxLineNumber;
wordType = ARRAY [charIndexRange] OF char; {string type}
wordEntryType = RECORD {entry in word table}
word : wordType; {word string}
firstNumberIndex, {head and tail of }
lastNumberIndex { linked number list}
: numberIndexRange;
END;
numberEntryType = RECORD {entry in number table}
number : lineNumberRange; {line number}
nextIndex {next index in}
: numberIndexRange; { linked list}
END;
wordTableType = ARRAY [wordIndexRange] OF wordEntryType;
numberTableType = ARRAY [numberIndexRange] OF numberEntryType;
VAR
wordTable : wordTableType;
numberTable : numberTableType;
nextWordIndex : wordIndexRange;
nextNumberIndex : numberIndexRange;
lineNumber : lineNumberRange;
wordTableFull, numberTableFull : boolean;
newLine : boolean;
FUNCTION NextChar : char;
{Fetch and echo the next character.
Print the line number before each new line.}
CONST
blank = ' ';
VAR
ch : char;
BEGIN
newLine := eoln;
IF newLine THEN BEGIN
readln;
writeln;
lineNumber := lineNumber + 1;
write(lineNumber:5, ' : ');
END;
IF newLine OR eof THEN BEGIN
ch := blank;
END
ELSE BEGIN
read(ch);
write(ch);
END;
NextChar := ch;
END;
FUNCTION IsLetter(ch : char) : boolean;
{Return true if the character is a letter, false otherwise.}
BEGIN
IsLetter := ((ch >= 'a') AND (ch <= 'z'))
OR ((ch >= 'A') AND (ch <= 'Z'));
END;
FUNCTION ReadWord(VAR buffer : wordType) : boolean;
{Extract the next word and place it into the buffer.}
CONST
blank = ' ';
VAR
charcount : integer;
ch : char;
BEGIN
ReadWord := false;
ch := ' ';
{Skip over any preceding non-letters.}
IF NOT eof THEN BEGIN
REPEAT
ch := NextChar;
UNTIL eof OR IsLetter(ch);
END;
{Find a letter?}
IF NOT eof THEN BEGIN
charcount := 0;
{Place the word's letters into the buffer.
Downshift uppercase letters.}
WHILE IsLetter(ch) DO BEGIN
IF charcount < MaxWordLength THEN BEGIN
IF (ch >= 'A') AND (ch <= 'Z') THEN BEGIN
ch := chr(ord(ch) + (ord('a') - ord('A')));
END;
charcount := charcount + 1;
buffer[charcount] := ch;
END;
ch := NextChar;
END;
{Pad the rest of the buffer with blanks.}
FOR charcount := charcount + 1 TO MaxWordLength DO BEGIN
buffer[charcount] := blank;
END;
ReadWord := true;
END;
END;
PROCEDURE AppendLineNumber(VAR entry : wordEntryType);
{Append the current line number to the end of the
current word entry's linked list of numbers.}
BEGIN
IF nextNumberIndex < NumberTableSize THEN BEGIN
{entry.lastnumberindex is 0 if this is the word's
first number. Otherwise, it is the number table index
of the last number in the list, which we now extend
for the new number.}
IF entry.lastNumberIndex = 0 THEN BEGIN
entry.firstNumberIndex := nextNumberIndex;
END
ELSE BEGIN
numberTable[entry.lastNumberIndex].nextIndex :=
nextNumberIndex;
END;
{Set the line number at the end of the list.}
numberTable[nextNumberIndex].number := lineNumber;
numberTable[nextNumberIndex].nextIndex := 0;
entry.lastNumberIndex := nextNumberIndex;
nextNumberIndex := nextNumberIndex + 1;
END
ELSE BEGIN
numberTableFull := true;
END;
END;
PROCEDURE EnterWord;
{Enter the current word into the word table. Each word is first
read into the end of the table.}
VAR
i : wordIndexRange;
BEGIN
{By the time we process a word at the end of an input line,
lineNumber has already been incremented, so temporarily
decrement it.}
IF newLine THEN lineNumber := lineNumber - 1;
{Search to see if the word had already been entered
previously. Each time it's read in, it's placed at the end
of the word table.}
i := 1;
WHILE wordTable[i].word <> wordTable[nextWordIndex].word DO
BEGIN
i := i + 1;
END;
{Entered previously: Update the existing entry.}
IF i < nextWordIndex THEN BEGIN
AppendLineNumber(wordTable[i]);
END
{New word: Initialize the entry at the end of the table.}
ELSE IF nextWordIndex < WordTableSize THEN BEGIN
wordTable[i].lastNumberIndex := 0;
AppendLineNumber(wordTable[i]);
nextWordIndex := nextWordIndex + 1;
END
{Oops. Table overflow!}
ELSE wordTableFull := true;
IF newLine THEN lineNumber := lineNumber + 1;
END;
PROCEDURE SortWords;
{Sort the words alphabetically.}
VAR
i, j : wordIndexRange;
temp : wordEntryType;
BEGIN
FOR i := 1 TO nextWordIndex - 2 DO BEGIN
FOR j := i + 1 TO nextWordIndex - 1 DO BEGIN
IF wordTable[i].word > wordTable[j].word THEN BEGIN
temp := wordTable[i];
wordTable[i] := wordTable[j];
wordTable[j] := temp;
END;
END;
END;
END;
PROCEDURE PrintNumbers(i : numberIndexRange);
{Print a word's linked list of line numbers.}
BEGIN
REPEAT
write(numberTable[i].number:4);
i := numberTable[i].nextIndex;
UNTIL i = 0;
writeln;
END;
PROCEDURE PrintXref;
{Print the cross reference listing.}
VAR
i : wordIndexRange;
BEGIN
writeln;
writeln;
writeln('Cross-reference');
writeln('---------------');
writeln;
SortWords;
FOR i := 1 TO nextWordIndex - 1 DO BEGIN
write(wordTable[i].word);
PrintNumbers(wordTable[i].firstNumberIndex);
END;
END;
BEGIN {Xref}
wordTableFull := false;
numberTableFull := false;
nextWordIndex := 1;
nextNumberIndex := 1;
lineNumber := 1;
write(' 1 : ');
{First read the words.}
WHILE NOT (eof OR wordTableFull OR numberTableFull) DO BEGIN
{Read each word into the last entry of the word table
and then enter it into its correct location.}
IF ReadWord(wordtable[nextwordIndex].Word) THEN BEGIN
EnterWord;
END;
END;
{Then print the cross reference listing if all went well.}
IF wordTableFull THEN BEGIN
writeln;
writeln('*** The word table is not large enough. ***');
END
ELSE IF numberTableFull THEN BEGIN
writeln;
writeln('*** The number table is not large enough. ***');
END
ELSE BEGIN
PrintXref;
END;
{Print final stats.}
writeln;
writeln((nextWordIndex - 1):5, ' word entries.');
writeln((nextNumberIndex - 1):5, ' line number entries.');
END {Xref}.