Hello! I am thinking of starting my own search engine. Initially it will be very simple but I want it to become mature with the passage of time. What kind of data structures should be used for the search engine. One that I know is the graph data structure, but I am sure other data structures should be used. Links for reference and help will be appreciated. Thanks in advance!
Building an efficient search engine
Hi,
The data structures which you can use for making your own search engine are Max-Heap, Tree data structure, Crawler data structure, DNODE data structure, Graph data structure, etc. The top most search engines are using these data structures for their search engine .i.e Tree data structure, Crawler data structure and DNODE data structure. You can check the full detail in the given link.
The link is below:
www.cs.dartmouth.edu/~campbell/cs50/datastructures.html
Â
Hope this answer will help you a lot.