I'm given a project to develop program to search text files in a folder to find matches for a given text and list the containing files. I can't use Java built-in data structures. I have to use my own data structures with algorithms.
I thought of building a data-structure similar to a hash-map to contain the strings found in text files. But i cant think of an algorithm to search.
Thanks in advance for any help!.