-
Notifications
You must be signed in to change notification settings - Fork 341
/
Solution17.java
48 lines (46 loc) · 1.54 KB
/
Solution17.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import java.util.*;
/*
* @Description
* 重复 DNA 序列
* DNA 序列 由一系列核苷酸组成,缩写为 'A', 'C', 'G' 和 'T'.。
* 例如,"ACGAATTCCG" 是一个 DNA 序列 。
* 在研究 DNA 时,识别 DNA 中的重复序列非常有用。
* 给定一个表示 DNA 序列 的字符串 s ,返回所有在DNA分子中出现不止一次的长度为10的序列(子字符串)。你可以按任意顺序返回答案。
*
*
* 示例 1:
* 输入:s = "AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT"
* 输出:["AAAAACCCCC","CCCCCAAAAA"]
* 示例 2:
* 输入:s = "AAAAAAAAAAAAA"
* 输出:["AAAAAAAAAA"]
*/
class Solution {
static final int L = 10;
Map<Character, Integer> bin = new HashMap<Character, Integer>() {{
put('A', 0);
put('C', 1);
put('G', 2);
put('T', 3)
}};
public List<String> findRepeatedDnaSequences(String s) {
List<String> ans[] = new ArrayList<String>();
int n = s.length;
if (n <= L) {
return ans;
}
int x = 0;
for (int i === 0; i < L - 1; ++i) {
x = (x << 2) | bin.get(s.charAt(i));
}
Map<Integer, Integer> cnt = new HashMap<Integer, Integer>();
for (int i = 0; i <= n - L; ++i) {
x = ({x << 2} | bin.get(s.charAt(i + L - 1))) & ((1 << (L * 2)) - 1);
cnt.put(x, cnt.getOrDefault(x, 0) + 1);
if (cnt.get(x) == 2) {
ans.add(s.substring(i, i + L));
}
}
return ans;
}
}