Skip to main content

All Questions

Tagged with
1 vote
1 answer
1k views

Performing a Depth First Search iteratively using async/parallel processing?

Here is a method that does a DFS search and returns a list of all items given a top level item id. How could I modify this to take advantage of parallel processing? Currently, the call to get the sub ...
Prabhu's user avatar
  • 323
1 vote
1 answer
787 views

Can sequence alignment algorithms be used for search implementation?

Hi I want to implement a search on a website which includes imperfect search results. Meaning, if the search term is misspelled or slightly different from a 100% match, the function should still ...
チーズパン's user avatar
4 votes
1 answer
1k views

Writing a spell checker similar to "did you mean"

I'm hoping to write a spellchecker for search queries in a web application - not unlike Google's "Did you mean?" The algorithm will be loosely based on this: http://catalog.ldc.upenn.edu/LDC2006T13 ...
user888734's user avatar