I am looking to find all common sequences of works between two strings. For example:

String A: A, B, 1, 2, 3, 4, 5, X

String B: 1, 2, 3, 4, A, B, C

The common sequences here would be A, B & 1, 2, 3, 4

I am looking for a Java solution which will do this.

Thank you very much

link|improve this question
3  
I'm sure you tried something and it did not work, right? Could you post what you've tried? Posting homework is OK, as long as you properly tag it. – dasblinkenlight Feb 10 at 16:35
1  
There are more common sequences: (1,2), (2,3), (3,4), ... – Andreas_D Feb 10 at 16:38
2  
if you say "all common sequences", why 'A' is not? and why '12', '123' or '234' are not? – Kent Feb 10 at 16:38
For the record this is not homework. I have found longest common sequences and tried to modify that code to find all common sequences. karussell.wordpress.com/2011/04/14/… and technicalypto.com/2010/02/… – Dan Krutz Feb 10 at 16:40
Kent -> Good point. The final result I am looking for is to be able to compare numerous text files in a folder and get the longest sequence of characters they all share. I figured this function was just a start. – Dan Krutz Feb 10 at 16:44
show 1 more comment
feedback

closed as not a real question by Andrew, casperOne Feb 12 at 16:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

It should be something simple, like this for example:

  1. search for B[i] in A. if it is found, go to 2 and assume j to be index for which B[i] == A[j]. else, repeat this step for i+1 (if B[i+1] exists)
  2. check if B[i+1] exists. if it does, go to 3. else, finish the algorithm.
  3. check if B[i+1] equals A[j+1]. repeat this step as long as it does. remember that every iteration is also a different common sequence

It may not be everything, but it's a good place to start.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.