LeetCodeAnimation/0242-Valid-Anagram/Article/0242-Valid-Anagram.md
2020-05-31 22:00:55 -07:00

90 lines
2.8 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# LeetCode 242 号问题有效的字母异位词
> 本文首发于公众号图解面试算法 [图解 LeetCode ](<https://github.com/MisterBooo/LeetCodeAnimation>) 系列文章之一。
>
> 同步博客https://www.algomooc.com
题目来源于 LeetCode 上第 242 号问题有效的字母异位词题目难度为 Easy目前通过率为 60.5%
### 题目描述
给定两个字符串 s t 编写一个函数来判断 t 是否是 s 的字母异位词
**示例 1:**
```
输入: s = "anagram", t = "nagaram"
输出: true
```
**示例 2:**
```
输入: s = "rat", t = "car"
输出: false
```
**说明**
你可以假设字符串只包含小写字母
**进阶**
如果输入字符串包含 unicode 字符怎么办你能否调整你的解法来应对这种情况
### 题目解析
字母异位词的意思是如果两个字符串互为字母异位词那么两个字符串里的字符数量和种类都一样不一样的是每个字符出现的位置以及先后顺序最简单的方法是直接将字符串按一定的规则排序然后遍历对比即可这种方法省空间但是因为涉及到排序时间复杂度就是 `O(nlgn)`
还有一个类似计数排序的方法就是统计一个字符串里面所有字符对应的个数然后再拿另外一个字符串做对比这么做可以把时间复杂度降到 `O(n)`如果这道题目中的字符串仅仅包含小写字母的话我们可以开辟一个长度是 26 的数组这样就不需要额外的空间但如果说输入的字符串包含 unicode 字符由于 unicode 字符集过于庞大常量级别的数组变得不那么可取我们可以考虑使用散列表这样的结构进行存储逻辑是和之前一样的但是这里的空间复杂度就不再是 `O(1)`而是 `O(n)`
<br>
### 代码实现排序
```java
public boolean isAnagram(String s, String t) {
if ((s == null) || (t == null) || (t.length() != s.length())) {
return false;
}
char[] sArr1 = s.toCharArray();
char[] sArr2 = t.toCharArray();
Arrays.sort(sArr1);
Arrays.sort(sArr2);
return Arrays.equals(sArr1, sArr2);
}
```
### 代码实现哈希
```java
public boolean isAnagram(String s, String t) {
if ((s == null) || (t == null) || (t.length() != s.length())) {
return false;
}
int n = s.length();
Map<Character, Integer> counts = new HashMap<>();
for (int i = 0; i < n; ++i) {
counts.put(s.charAt(i), counts.getOrDefault(s.charAt(i), 0) + 1);
}
for (int i = 0; i < n; ++i) {
counts.put(t.charAt(i), counts.getOrDefault(t.charAt(i), 0) - 1);
if (counts.getOrDefault(t.charAt(i), -1) < 0) {
return false;
}
}
return true;
}
```
### 动画描述
![](../Animation/242.gif)
![](../../Pictures/qrcode.jpg)