If I were to give you a bunch of strings, how would you store them? Perhaps as an array or a list? But what if you’re required to search for a string? That’s a search complexity of O(n) (Where n is the number of strings stored). Can this be done more efficiently? Instead of storing…
Day: October 14, 2019
Have you ever wondered what happens when you search for something on google? How does google manage to find the most useful data from such a huge collection of webpages Organizing Data This is basically done in two steps : Crawling and Indexing Crawling This happens before the search. The web crawlers gather information from…