How to develop Search Engine like google.
-
Hi, Can any one give me idea, how to develop a search engine like google. I want to build a one like this. From where search engine get the matched string? Is there any table where Keywords are stored? From how I would know about URL. I m new in programming. So plz answer in detail. thx.
-
Hi, Can any one give me idea, how to develop a search engine like google. I want to build a one like this. From where search engine get the matched string? Is there any table where Keywords are stored? From how I would know about URL. I m new in programming. So plz answer in detail. thx.
You're new to programming and you want to jump into the deep end of the pool and undertake such an ambitious project. Amazing. Some of my first programming projects, small as they were, allowed me to build a solid foundation first, and then add to it a bit more each time. It's been a while but some of them I remember are: -- Fahrenheit to celcius convertor -- Monte Carlo anaylsis -- Degrees to radians convertor -- Calculate wind chill and heat indices -- Quadratic equations -- Complex numbers (used Ada and its flavor of classes for this) -- Department store markup (wholesale * markup = sale price) -- Number-guessing game -- Split a file into two pieces, and then merge it back together -- Various stdin/stdout type programs (e.g., pipe the output of a number file through a program to compute the average) -- Writing to and reading from a data file -- Various sorting and searching algorithms -- RPN calculator (prerequisite of stacks, lists, and queues) There are dozens more but I can't recall them right now. I think you get my point, however.