Building an efficient search engine

Asked By 10 points N/A Posted on -
qa-featured

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!

SHARE
Answered By 0 points N/A #180984

Building an efficient search engine

qa-featured

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.

Related Questions