I'm using this piece of Java code to find similar strings:
if( str1.indexof(str2) >= 0 || str2.indexof(str1) >= 0 ) .......
but With str1 = "pizzabase" and str2 = "namedpizzaowl" it doesn't work.
|
I'm using this piece of Java code to find similar strings:
but With how do I find the common substrings i.e. "pizza"? |
||||
|
|
|
If your algorithm says two strings are similar when they contain a common substring, then this algorithm will always return true; the empty string This is a good algorithm for determining string (or more generally, sequence) similarity: http://en.wikipedia.org/wiki/Levenshtein_distance. |
||||
|
|
|
Iterate over each letter in This will find all substrings shared, but is - like bubble sort - hardly optimal while a very basic example of how to solve a problem. Something like this pseudo-ish example:
|
||||