The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
245 views

Find Longest common subsequence : my method [closed]

I am trying to implement the Longest common sub sequence of 2 strings. My method is bit different than posted here. I am near the solution but little problem. Please help me. My problem: Desired ...
1
vote
1answer
80 views

Data-mining algorithm for dynamically consolidating recurring substrings?

I am trying to construct an artificial intelligence unit. I plan to do this by first collecting sensory input ('observations') into a short-term working-memory list, continually forming patterns ...
0
votes
1answer
221 views

Longest Common Sub-sequence using a recursive list

I am trying to find the the Longest Common Sub-sequence between two things of type comparable. I have the algorithm down, but I could like to add these items to a list via a recursion method call, but ...
0
votes
0answers
64 views

Hunting for C++ implement and advices for a task about finding longest common substring

There are K strings, I have to find the longest common substring. Format of input data In the first string we have integer K (1<K<10), after that, there are K strings (i told you about it in ...
9
votes
3answers
841 views

Longest Subsequence with all occurences of a character at 1 place

In a sequence S of n characters; each character may occur many times in the sequence. You want to find the longest subsequence of S where all occurrences of the same character are together in ...
1
vote
1answer
236 views

why is this parallel function for computing the longest common subsequence slower than the serial?

The parallel computation of the LCS follows the wavefront pattern. Here is the parallel function that is slower than a serial implementation. (I think that the number of diagonals(parallel) vs number ...
10
votes
1answer
558 views

Longest repeated (k times) substring

I know this is a somewhat beaten topic, but I have reached the limit of help I can get from what's already been answered. This is for the Rosalind project problem LREP. I'm trying to find the longest ...
4
votes
1answer
232 views

Longest Common Substring with wrong character tolerance

I have a script I found on here that works well when looking for the Lowest Common Substring. However, I need it to tolerate some incorrect/missing characters. I would like be able to either input a ...
0
votes
2answers
119 views

re to find longest matching postfix of two strings

I have two strings like: a = '54515923333558964' b = '48596478923333558964' Now the longest postfix match is c = '923333558964' what will be a solution using re? Here is a solution I found for ...
1
vote
2answers
293 views

Finding the longest word in a string using dynamic programming?

I have started working on some algorithm problems when I saw a problem asking if I can find the longest word from a string (string does not have spaces just characters). After thinking for some time, ...
2
votes
1answer
231 views

Longest common SUBSTRING optimization

Can anybody help me with optimization of my LONGEST COMMON SUBSTRING problem? I must read really big files (up to 2 Gb), but i cant figure out which structure to use... In c++ there is no hash maps.. ...
-1
votes
2answers
129 views

Find arbitary patterns common to a group of strings

Background: I am developing a program in that iterates over all the movies & tv series episodes stored on my computer, rates them (using rotten tomatoes) and sorts them in order of rating. I ...
3
votes
7answers
178 views

Recursive Longestword programming

I have done it finally like what I want. Thank you all for helping and I want to emphasize that it was NOT homework. public static void main(String[] args) { String input = "Java is a programming ...
0
votes
2answers
377 views

All Common Subsequences in Array of Strings

I'm trying to find ALL common subsequences in an array of strings in ruby not just the longest single subsequence. This means that if the input is ["aaaF hello", "aaaG hello", "aaaH hello"] The ...
0
votes
4answers
474 views

Longest common substring constrained by pattern

Problem: I have 3 strings s1, s2, s3. Each contain garbage text on either side, with a defining pattern in its centre: text1+number1. number1 increases by 2 in each string. I want to extract ...
0
votes
0answers
560 views

Longest Palindrome Substring in linear time example [closed]

Consider the method explained here: http://www.akalin.cx/2007/11/28/finding-the-longest-palindromic-substring-in-linear-time/. It finds the longest palindrome string in linear time. Considering its ...
1
vote
2answers
224 views

greatest common divisor for strings in python

I would like to have a python function that given the list mystrings = ['abcde', 'abcdf', 'abcef', 'abcnn'] returns the string 'abc', i.e., the longest piece contained by all the elements in the ...
0
votes
0answers
149 views

String matching in python [duplicate]

Already solved this problem.Thanks to all:
1
vote
2answers
269 views

Specifying end of string sentinels in Python prior to constructing a suffix array

I'm implementing algorithms in http://portal.acm.org/citation.cfm?id=1813708 that utilize suffix arrays to find longest common substrings. The algorithms involve constructing a suffix array for a ...