码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode187——Repeated DNA Sequences

时间:2015-08-19 00:36:15      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:leetcode   面试题   

All DNA is composed of a series of nucleotides abbreviated as A, C, G, and T, for example: "ACGAATTCCG". When studying DNA, it is sometimes useful to identify repeated sequences within the DNA.

Write a function to find all the 10-letter-long sequences (substrings) that occur more than once in a DNA molecule.

For example,

Given s = "AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT",

Return:
["AAAAACCCCC", "CCCCCAAAAA"].


实现:

class Solution {
public:
    vector<string> findRepeatedDnaSequences(string s) {
        vector<string> vs;
        char hash[1048575] = {0};
        if (s.size() < 11) return vs;
        int len = s.size();
        int flag = 0;
        for (int i = 0; i < 9; i++) {
            flag = flag << 2 | (s[i] - ‘A‘ + 1) % 5;
        }
        for (int i = 9; i < s.size(); i++) {
            if (hash[(flag= flag << 2 | (s[i] - ‘A‘ + 1) % 5)&0xfffff]++ == 1) {
                vs.push_back(s.substr(i-9, 10));
            }
        }
        return vs;
    }
};



版权声明:本文为博主原创文章,未经博主允许不得转载。

LeetCode187——Repeated DNA Sequences

标签:leetcode   面试题   

原文地址:http://blog.csdn.net/booirror/article/details/47763553

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!