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

187. Repeated DNA Sequences

时间:2019-10-19 10:02:26      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:algorithm   image   href   class   ++   nbsp   ted   shm   set   

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.

Example:

Input: s = "AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT"

Output: ["AAAAACCCCC", "CCCCCAAAAA"]
class Solution {
    public List<String> findRepeatedDnaSequences(String s) {
        List<String> res = new ArrayList();
        if(s.length() < 10) return res;
        
        Map<String, Integer> map = new HashMap();
        for(int i = 0; i < s.length() - 9; i++){
            String k = s.substring(i, i + 10);
            int value = map.getOrDefault(k, 0);
            map.put(k, value + 1);
        }
        for(Map.Entry<String, Integer> m: map.entrySet()){
            if(m.getValue() > 1){
                res.add(m.getKey());
            }
        }
        return res;
    }
}

技术图片

 

 https://soulmachine.gitbooks.io/algorithm-essentials/java/bitwise-operations/repeated-dna-sequences.html

187. Repeated DNA Sequences

标签:algorithm   image   href   class   ++   nbsp   ted   shm   set   

原文地址:https://www.cnblogs.com/wentiliangkaihua/p/11701690.html

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