This is quoted from "Testing" in the assignment: "We will give you some text files that you can use to test your solution, along with the correct answers to count, search, and approximate of a few selected words. Your program should work with text files of any size. The size of your trie should have a maximum size and will not increase as text files get larger."
Is the idea of the program accepting files of any length, and placing a maximum size on the trie contradictory? Is the max size inherent, or must we preset it? |