diff --git a/README.md b/README.md index 5110e61..cec8450 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# LInkedList \ No newline at end of file +# 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.