Tagged Questions

143
votes
16answers
21k views

How does the Google “Did you mean?” Algorithm work?

I've been developing an internal website for a portfolio management tool. There is a lot of text data, company names etc. I've been really impressed with some search engines ability to very quickly ...
5
votes
2answers
307 views

Fast Dynamic Fuzzy search over 100k+ strings in C#

Let's say they are pre-loaded stock symbols, typed into a text box. I am looking for code that I can copy, not a library to install. This was inspired by this question: Are there any Fuzzy Search or ...
4
votes
8answers
457 views

efficient algorithm for searching one of several strings in a text?

I need to search incoming not-very-long pieces of text for occurrences of given strings. The strings are constant for the whole session and are not many (~10). Additional simplification is that none ...
4
votes
4answers
595 views

Fast file search algorithm for IP addresses

Question What is the fastest way to find if an IP address exists in a file that contains IP addresses sorted as: 219.93.88.62 219.94.181.87 219.94.193.96 220.1.72.201 220.110.162.50 220.126.52.187 ...