-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c268a8
commit f2f18eb
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
# LInkedList | ||
# LInkedList | ||
|
||
Wrote a program that creates a cross-reference listing of the words in a text file, using a linked list to put the words in order, and another linked list associated with each word to keep the line numbers of the words. The input files contain lines of text with only words, spaces, and only periods and commas as punctuation. Wrote both lists from scratch (without using the STL) using classes. |