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

187. Repeated DNA Sequences

时间:2016-10-13 14:05:18      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

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"].

比较经典的题目
思路:用hashmap扫一遍,出现过的就加到list上去,为了不使结果重复,当碰到重复的时候更新value。
public class Solution {
    public List<String> findRepeatedDnaSequences(String s) {
        List<String> res=new ArrayList<>();
        if(s==null)return res;
        Map<String,Integer> check=new HashMap<>();
        for(int i=0;i<=s.length()-10;i++){
            String sub=s.substring(i,i+10);
            if(!check.containsKey(sub)){
                check.put(sub,1);
            }else{
                if(check.get(sub)==1){
                    res.add(sub);
                    check.put(sub,2);
                }
            }
        }
        return res;
    }
}

 

187. Repeated DNA Sequences

标签:

原文地址:http://www.cnblogs.com/Machelsky/p/5955894.html

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