LeetCode187 - 重复的DNA (哈希表、哈希集合)

题目:

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++)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值