forked from DengWangBao/Leetcode-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidAnagram.java
More file actions
34 lines (31 loc) · 860 Bytes
/
ValidAnagram.java
File metadata and controls
34 lines (31 loc) · 860 Bytes
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
import java.util.Arrays;
/**
* https://leetcode.com/articles/valid-anagram/
*/
public class ValidAnagram {
// 耗时6ms,时间复杂度O(n)
public boolean isAnagram(String s, String t) {
if (s.length() != t.length()) {
return false;
}
int[] count = new int[256];
for (int i = 0; i < s.length(); i++) {
count[s.charAt(i)]++;
count[t.charAt(i)]--;
}
for (int i = 'a'; i <= 'z'; i++) {
if (count[i] != 0) {
return false;
}
}
return true;
}
// 耗时6ms,时间复杂度O(nlgn)
public boolean isAnagram2(String s, String t) {
char[] ss = s.toCharArray();
Arrays.sort(ss);
char[] tt = t.toCharArray();
Arrays.sort(tt);
return Arrays.equals(ss, tt);
}
}