Tagged Questions
3
votes
8answers
2k views
How to find common strings among two very large files?
I have two very large files (and neither of them would fit in memory). Each file has one string (which doesn't have spaces in it and is either 99/100/101 characters long) on each line.
Update: The ...
2
votes
1answer
134 views
Is there a name for this type of algorithm?
I have a 2 dimensional array forming a table:
[color][number][shape ]
-------------------------
[black][10 ][square ]
[black][10 ][circle ]
[red ][05 ][triangle]
[red ][04 ...
0
votes
3answers
234 views
Lowest Common Ancestor implementations - what's the difference?
I've been reading about the Lowest Common Ancestor algorithm on top coder and I can't understand why the RMQ algorithm is involved - the solution listed there is insanely complicated and has the ...
-1
votes
1answer
63 views
Common sequences in two strings [closed]
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, ...