Lab 5 – Cross Referencer

Write a cross-reference program that constructs a binary search tree containing the words from a text file, and records the line numbers on which they occur. Line numbers should be stored in a linked list, associated with each node in the tree. Take an input file, process it, and then print in alphabetical order all the words in the text file, alongside their line numbers.

Here is something that might help you get started…

https://github.com/drkencosh/tree