The document describes a Concordance Project that implements an alphabetical list of strings using a sorted linked list data structure. It includes:
- A main function that loads string data from text files, inserts the strings into a sorted linked list, removes some strings, and prints the results.
- A sorted_list class template that extends the STL list template to allow ordered insertion and sorting.
- Supporting functions like one to load data from a file and return it in a vector, and one to print a range of iterators.
The document provides documentation on the classes, functions, variables and files used in the project with descriptions of purpose and complexity.