题目:
The DNA sequence is composed of a series of nucleotides abbreviated as 'A', 'C', 'G', and 'T'.
For example, "ACGAATTCCG" is a DNA sequence.
When studying DNA, it is useful to identify repeated sequences within the DNA.
Given a string s that represents a DNA sequence, return all the 10-letter-long sequences (substrings) that occur more than once in a DNA molecule. You may return the answer in any order.
DNA序列 由一系列核苷酸组成,缩写为 'A', 'C', 'G' 和 'T'.。
例如,"ACGAATTCCG" 是一个 DNA序列 。
在研究 DNA 时,识别 DNA 中的重复序列非常有用。
给定一个表示 DNA序列 的字符串 s ,返回所有在 DNA 分子中出现不止一次的 长度为 10 的序列(子字符串)。你可以按 任意顺序 返回答案。
思路:
一开始选择使用哈希集合,但是发现会出现答案输出多次的情况(因为无法判断某个字符串是否已经被输出过)于是采用哈希表
题解:
哈希集合(WrongAnswer)
class Solution {
public:
vector<string> findRepeatedDnaSequences(string s) {
vector<string> answer;
int len=s.length();
unordered_set<string> x;
for(int i=0;i<=len-10;i++){
string tmp;
for(int j=i;j<i+10;j++)
tmp+=s[j];
if(x.find(tmp)==x.end()) x.insert(tmp);
else answer.push_back(tmp);
}
return answer;
}
};
由于哈希集合没有考虑到答案中序列的不唯一性,所以会将可能的序列输出很多次。
哈希表
class Solution {
public:
vector<string> findRepeatedDnaSequences(string s) {
vector<string> answer;
int len=s.length();
unordered_map<string,int> x;
for(int i=0;i<=len-10;i++){
string tmp;
for(int j=i;j<i+10;j++) tmp+=s[j];
x[tmp]++;
if(x[tmp]==2) answer.push_back(tmp);
}
return answer;
}
};
值得注意的是,循环中len换成s.length()会报错,但是原因不太清楚
for(int i=0;i<=s.length()-10;i++)