-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLCR 032.有效的字母异位词.ts
88 lines (68 loc) · 3.23 KB
/
LCR 032.有效的字母异位词.ts
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// 给定两个字符串 s 和 t ,编写一个函数来判断它们是不是一组变位词(字母异位词)
// 注意:若 s 和 t 中每个字符出现的次数都相同且字符顺序不完全相同,则称 s 和 t 互为变位词(字母异位词)
// 示例 1
// 输入: s = "anagram", t = "nagaram"
// 输出: true
// 示例 2
// 输入: s = "rat", t = "car"
// 输出: false
// 示例 3
// 输入: s = "a", t = "a"
// 输出: false
// 2023-12-16 再写一遍
// charCodeAt + toString
function isAnagram(s: string, t: string): boolean {
if (s === t || s.length !== t.length) return false
// NOTE: charCodeAt 只能返回下标位置的第一个字符 unicode,codePointAt 可以返回该下标字符完整 unicode
const A_UNICODE = 'a'.charCodeAt(0)
const sTable = new Array(26).fill(0)
const tTable = new Array(26).fill(0)
for (let i = 0; i < s.length; i++) {
sTable[s[i].charCodeAt(0) - A_UNICODE]++
tTable[t[i].charCodeAt(0) - A_UNICODE]++
}
return sTable.toString() === tTable.toString()
}
// 数组模拟 26 个字母的方式代替 hashMap(主要是使用 codePointAt 方法)
function isAnagram3(s: string, t: string): boolean {
if (s === t || s.length !== t.length) return false
const table = new Array(26).fill(0)
// 想让 a 在下标 0 的位置,需要将每个字符计算出来的 Unicode 码位值减去初始 a 的码位值
// ?? 与 || 不同,?? 只有在左侧为 null 或 undefined 时才会返回其右侧值
// || 逻辑或运算符,在左侧为假值(falsy)时就会返回右侧值
const aCodePoint = 'a'.codePointAt(0) ?? 0
// 计数(注意这里的 ?? 要加括号,因为运算符优先级没有 - 号高)
// 参考:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/Operator_precedence
for (let char of s) table[(char.codePointAt(0) ?? 0) - aCodePoint]++
// 比较并减少计数
for (let char of t) if (table[(char.codePointAt(0) ?? 0) - aCodePoint]-- === 0) return false
return true
}
// hashMap: 先排除暴力提到的两种特殊情况
// 遍历 s 中的字符按照 { 字符: 出现次数 } 的方式存储至 hashMap 中
// 遍历 t 中的字符与 hashMap 中存储的字符进行对比并减少出现次数,若出现
// 不存在或出现次数为 0 视为失败,否则互为变位词(这道题和 383.赎金信 思路一样一样的)
function isAnagram2(s: string, t: string): boolean {
if (s === t || s.length !== t.length) return false
const map = new Map()
for (let char of s) {
if (!map.has(char)) map.set(char, 0)
map.set(char, map.get(char) + 1)
}
for (let char of t) {
if (!map.has(char) || map.get(char) === 0) return false
map.set(char, map.get(char) - 1)
}
// 通过!
return true
}
// 暴力:题目中提到了出现次数要相同而且字符顺序不完全相同,以下情况排除
// - 两个字符串完全相同
// - 长度不一
// 排除掉这两个情况,就可以将两个字符串进行排序对比,如果一致则互为变位词,否则非也
function isAnagram1(s: string, t: string): boolean {
if (s === t || s.length !== t.length) return false
if ([...s].sort().join('') === [...t].sort().join('')) return true
return false
}
console.log(isAnagram('rat', 'car'))