我有这个程序,应该找到许多字符串的最长公共子串。它的确如此,但如果琴弦很长(即长度> 8000个字符),它的作用很慢(1.5秒)。 有没有办法优化它?
该计划是这样的:
//#include "stdafx.h"
#include <iostream>
#include <string>
#include <vector>
#include <cassert>
using namespace std;
const unsigned short MAX_STRINGS = 10;
const unsigned int MAX_SIZE=10000;
vector<string> strings;
unsigned int len;
string GetLongestCommonSubstring( string string1, string string2 );
inline void readNumberSubstrings();
inline const string getMaxSubstring();
void readNumberSubstrings()
{
cin >> len;
assert(len > 1 && len <=MAX_STRINGS);
strings.resize(len);
for(register unsigned int i=0; i<len;i++)
strings[i]=string(MAX_SIZE,0);
for(register unsigned int i=0; i<len; i++)
cin>>strings[i];
}
const string getMaxSubstring()
{
string maxSubstring=strings[0];
for(register unsigned int i=1; i < len; i++)
maxSubstring=GetLongestCommonSubstring(maxSubstring, strings[i]);
return maxSubstring;
}
string GetLongestCommonSubstring( string string1, string string2 )
{
const int solution_size = string2.length()+ 1;
int *x=new int[solution_size]();
int *y= new int[solution_size]();
int **previous = &x;
int **current = &y;
int max_length = 0;
int result_index = 0;
int j;
int length;
int M=string2.length() - 1;
for(register int i = string1.length() - 1; i >= 0; i--)
{
for(register int j = M; j >= 0; j--)
{
if(string1[i] != string2[j])
(*current)[j] = 0;
else
{
length = 1 + (*previous)[j + 1];
if (length > max_length)
{
max_length = length;
result_index = i;
}
(*current)[j] = length;
}
}
swap(previous, current);
}
string1[max_length+result_index]='\0';
return &(string1[result_index]);
}
int main()
{
readNumberSubstrings();
cout << getMaxSubstring() << endl;
return 0;
}
注意:有一个原因是我没有编写可以用后缀树来解决这个问题的代码(它们很大)。
答案 0 :(得分:1)
通常,在优化方面,不同的方法可能是您唯一真正的选择,而不是尝试逐步改进当前的实施。这是我的想法:
创建可能出现在最长公共子字符串中的有效字符列表。即,如果一个字符没有出现在所有字符串中,则它不能成为最长公共子字符串的一部分。
将每个字符串分成多个只包含有效字符的字符串
对于每个这样的字符串,创建每个可能的子字符串并将其添加到列表中
过滤(与字符一样)所有字符串,不会显示在所有列表中。
这种复杂性显然在很大程度上取决于无效字符的数量。如果它为零,这种方法根本没有帮助。
对您的代码的一些评论:不要试图过于聪明。编译器将进行如此优化,您无需在代码中放置register
。其次,你分配字符串然后覆盖它们(在readNumberSubstrings
中),这是完全没必要的。第三,如果可以的话,通过const引用。第四,不要使用原始指针,特别是如果你从不delete []
new []
d个对象。使用std::vector
代替它,它可以很好地处理异常(你可能会遇到异常,你经常使用字符串!)。
答案 1 :(得分:0)
您必须使用后缀树。这个结构将生成算法,对于包含10000个符号的10个字符串,它的工作时间约为1秒。
答案 2 :(得分:0)
尝试使用后缀Arraya,它们会占用您输入字符串的内存(尽管取决于您的文本编码),并且可以快速构建线性时间。
http://en.wikipedia.org/wiki/Suffix_array
这是我的
的JavaScript代码function LCS(as, bs, A, B) {
var a = 0, b = 0, R = [], max = 1
while (a < A.length && b < B.length) {
var M = cmpAt(as, bs, A[a], B[b])
if (M.size > 0) {
if (M.ab < 0) {
var x = b; while (x < B.length) {
var C = cmpAt(as, bs, A[a], B[x])
if (C.size >= M.size) { if (C.size >= max) max = C.size, R.push([a, x, C.size]) } else break
x++
}
} else {
var x = a; while (x < A.length) {
var C = cmpAt(as, bs, A[x], B[b])
if (C.size >= M.size) { if (C.size >= max) max = C.size, R.push([x, b, C.size]) } else break
x++
}
}
}
if (M.ab < 0) a++; else b++
}
R = R.filter(function(a){ if (a[2] == max) return true })
return R
}
function cmpAt(a, b, x, y) {
var c = 0
while (true) {
if (x == a.length) {
if (y == b.length) return { size: c, ab: 0 }
return { size: c, ab: -1 }
}
if (y == b.length) return { size: c, ab: 1 }
if (a.charCodeAt(x) != b.charCodeAt(y)) {
var ab = 1;
if (a.charCodeAt(x) < b.charCodeAt(y)) ab = -1
return { size: c, ab: ab }
}
c++, x++, y++
}
}