The document discusses different indexing structures for information retrieval, including sequential files, inverted files, and suffix trees. It provides examples of how each structure is constructed and organized. Sequential files arrange all terms and their associated documents sequentially without pointers. Inverted files divide the index into a vocabulary listing terms alphabetically and associated postings files containing term locations. Suffix trees index the entire text as a single string and support complex queries by compactly representing all suffixes.