- 论坛徽章:
- 1
|
两道题,问了N多人,没结果,再问一下看看
程序终于调试好了,但存在一些必需说明的问题:
1>;我机子性能不好,产生10000长度也不知道结果到底是否正确.
2>;我用10位最大长度及至少4位一样长度的相等的字符串试了结果是正确的.
3>;希望帮忙测试一下.
4>;- 2 C:\ProTemp\FindSameStr.cpp:128 [Warning] no newline at end of file
复制代码 这个问题到底是什么引起的?如何解决.好像运气不好就会有,看到有警告不爽.
5>;程序效率很低,还可以改进很多.但需要时间.
6>;为什么随机数都是一样的?程序哪里错了,在产生随机数上.
7>;代码如下:
- #include <iostream>;
- #include <fstream>;
- #include <string>;
- #include <vector>;
- #include <map>;
- #include <set>;
- #include <ctime>;
- #include <cstdlib>;
- #include <algorithm>;
- #include <exception>;
- using namespace std;
- const int SizeMax=1000; //测试时改成自己想要的最大长度原串
- char RandChar();
- void RandString(string &s);
- void OutputStatics(ofstream &out,
- const string &s,const map<string,vector<int>; >; &sameStr);
- void FindSameStr(const string &s, string::size_type minLen = 10);
- void FindSameReverseStr(const string &s,string::size_type minLen = 10);
- int main()
- {
- ofstream test("C:\\test.txt");
- string testString;
- RandString(testString);
- test << testString << endl;
- FindSameStr(testString); //测试时改成最小同样串长度,默认是10
- // FindSameReverseStr(testString);
- cin.get();
- }
- char RandChar()
- {
- srand(time(0));
- switch(rand()%4)
- {
- case 0: return 'A';
- break;
- case 1: return 'C';
- break;
- case 2: return 'G';
- break;
- case 3: return 'T';
- break;
- default:
- cout << "Error and Exit Prog\n" << endl;
- exit(-1);
- }
- }
- void RandString(string &s) {
- for (int i=0; i<SizeMax; ++i)
- s.push_back(RandChar());
- }
-
- void OutputStatics(ofstream &out,
- const string &s,const map<string,vector<int>; >; &sameStr)
- {
- out << "Source String:\n" << s << "\n\n" << endl;
- map<string,vector<int>; >;::const_iterator iter = sameStr.begin(),
- iter_end = sameStr.end();
- out << "The Same String in the Source String:\n" << endl;
- while ( iter != iter_end)
- {
- out << iter->;first << " Length: " << (iter->;first).size() << endl
- << "The Start Pos: ";
- for (vector<int>;::const_iterator vi = (iter->;second).begin();
- vi != (iter->;second).end(); ++vi)
- out << *vi << " ";
- out << endl << endl;
- ++iter;
- }
- }
-
- void FindSameStr(const string &s, string::size_type minLen)
- {
- string::size_type idx = 0, maxLen = minLen, pos = 0;
- map<string,vector<int>; >; mvs;
- set<string>; SetStr;
- string tempFound, moreLenFound, Found;
-
- while (1) //重要:前面的字符串没有同样的时候还需要找后面的,直到最后一个可能的字符串
- {
- tempFound = string(s,idx,minLen);
- //只要能找到一个同样的就行,注意是从该被找字符串之后开始找
- while ( (s.find(tempFound,idx+tempFound.length())) != string::npos)
- {
- Found = moreLenFound = tempFound;
- //是否存在更长的同样的字符串
- while (1)
- {
- moreLenFound.push_back(s[idx + maxLen++ - 1]);
- //再也找不到更长的字符串了
- if (s.find(moreLenFound,idx + maxLen) == string::npos)
- {
- SetStr.insert(Found);
- idx += (maxLen - minLen);
- maxLen = minLen;
- tempFound = string(s,idx,minLen); //构造好下一个被找字符串
- break;
- }
- Found = moreLenFound; //保存最长同样的字符串
- }
- }
- if ( (++idx + 2*minLen) >; SizeMax )
- break;
- }
- //处理SetStr中的字符串,找到所有共同的字符串的起点
- for (set<string>;::iterator iter = SetStr.begin(); iter != SetStr.end(); ++iter)
- {
- pos = 0;
- while( (pos = s.find(*iter,pos)) != string::npos)
- {
- mvs[*iter].push_back(pos);
- pos += (*iter).size();
- if(pos >;= SizeMax)
- break;
- }
- }
- ofstream coutstr("C:\\sourceStr.txt");
- OutputStatics(coutstr,s,mvs); //可以直接输出到cout上
- }
- void FindSameReverseStr(const string &s,string::size_type minLen)
- {
- //在适当的地方把被查找字符串反转一下,和上面的一样处理,也可以来个bool参数
- }
复制代码
下面的我用的10,4测试后的结果:
Source String:
AAAAAAAAAA
The Same String in the Source String:
AAAA Length: 4
The Start Pos: 0 4
AAAAA Length: 5
The Start Pos: 0 5 |
|