Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
6answers
504 views

Find the words in a long stream of characters. Auto-tokenize

How would you find the correct words in a long stream of characters? Input : "The revised report onthesyntactictheoriesofsequentialcontrolandstate" Google's Output: "The revised report on ...
5
votes
6answers
397 views

Books on string algorithms

There have been numerous posts on string algorithms: http://stackoverflow.com/questions/246961/algorithm-to-find-similar-text, http://stackoverflow.com/questions/451884/similar-string-algorithm, ...
5
votes
7answers
419 views

Constant-time hash for strings?

Another question on SO brought up the facilities in some languages to hash strings to give them a fast lookup in a table. Two examples of this are dictionary<> in .NET and the {} storage structure ...
2
votes
0answers
35 views

Implementation of Aho–Corasick string matching algorithm in PHP

Is there a working implementation of Aho–Corasick in PHP? There is one Aho-Corasick string matching in PHP mentioned on the Wikipedia article: <?php /* This class performs a multiple ...
1
vote
2answers
66 views

How to Store strings to Optimize Searching

I am having a table containing a column of type VARCHAR. I want to search strings inside the column according to user input query. I want to implement Approximate Searching. And my table contains Lacs ...
1
vote
2answers
540 views

Longest palindrome prefix

How to find the longest palindrome prefix of a string in O(n)?
0
votes
1answer
33 views

Searching an array of c-strings for a substring using string_algo/ranges

I need to search an array of c-strings for a substring. I created what I thought would return me the answer but it is only syntactically correct but semantically wrong, but I'm not sure where I have ...
0
votes
0answers
145 views

Multiple keyword (100s to 1000s) search (string-search algorithm) in PHP

I have this problem to solve in my PHP project where some keywords (from a few hundreds to a few thousands, lengths can vary) need to be searched in a string about 100-300 characters long, sometimes ...
-2
votes
1answer
315 views

String Processing Algorithms

Please share some good websites where I can learn more on String Processing Techniques and could grill myself more into different kinds of algorithm available in this field..