LeetCode Hot 100 (1) 哈希
小帅 1/1/2024 LeetCode
# 1.两数之和 (opens new window)
题目:
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
示例 1:
输入:nums = [2,7,11,15], target = 9
输出:[0,1]
解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。
1
2
3
2
3
示例 2:
输入:nums = [3,2,4], target = 6
输出:[1,2]
1
2
2
示例 3:
输入:nums = [3,3], target = 6
输出:[0,1]
1
2
2
提示:
- 2 <= nums.length <= 10^4
- -10^9 <= nums[i] <= 10^9
- -10^9<= target <= 10^9
- 只会存在一个有效答案
进阶:你可以想出一个时间复杂度小于 O(n2) 的算法吗?
思路:
从左到右遍历的过程中用一个哈希表记录遍历过的数,每次查一下哈希表能不能找到 之前的某个数+当前数=target
代码:
class Solution {
public:
vector<vector<string>> groupAnagrams(vector<string>& strs) {
unordered_map<string, vector<string>> h;
vector<vector<string>> res;
for(int i=0;i<strs.size();i++) {
string temp_s = strs[i];
sort(temp_s.begin(),temp_s.end());
h[temp_s].push_back(strs[i]);
}
for(auto it : h) {
res.push_back(it.second);
}
return res;
}
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
func groupAnagrams(strs []string) [][]string {
res := make([][]string,0)
mp1 := make(map[string][]string)
for _, str := range strs {
t := []rune(str)
sort.Slice(t,func(i,j int) bool {
return t[i]<t[j]
})
s := string(t)
_, ok := mp1[s]
if ok {
mp1[s] = append(mp1[s],str)
} else {
mp1[s] = []string{str}
}
}
for _,v := range mp1 {
res = append(res,v)
}
return res
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 49.字母异位词分组 (opens new window)
题目:
给你一个字符串数组,请你将 字母异位词 组合在一起。可以按任意顺序返回结果列表。
字母异位词 是由重新排列源单词的所有字母得到的一个新单词。
示例 1:
输入: strs = ["eat", "tea", "tan", "ate", "nat", "bat"]
输出: [["bat"],["nat","tan"],["ate","eat","tea"]]
1
2
2
示例 2:
输入: strs = [""]
输出: [[""]]
1
2
2
示例 3:
输入: strs = ["a"]
输出: [["a"]]
1
2
2
提示:
- 1 <= strs.length <= 10^4
- 0 <= strs[i].length <= 100
- strs[i] 仅包含小写字母
思路:
用一个哈希表,以遍历到的每个字符串排序后得到字符串为key,以排序后得到的是这个key的字符串的字符串数组为value进行存储,之后遍历哈希表将结果存入结果数组。
代码:
class Solution {
public:
vector<vector<string>> groupAnagrams(vector<string>& strs) {
unordered_map<string, vector<string>> h;
vector<vector<string>> res;
for(int i=0;i<strs.size();i++) {
string temp_s = strs[i];
sort(temp_s.begin(),temp_s.end());
h[temp_s].push_back(strs[i]);
}
for(auto it : h) {
res.push_back(it.second);
}
return res;
}
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
func groupAnagrams(strs []string) [][]string {
res := make([][]string,0)
mp1 := make(map[string][]string)
for _, str := range strs {
t := []rune(str)
sort.Slice(t,func(i,j int) bool {
return t[i]<t[j]
})
s := string(t)
_, ok := mp1[s]
if ok {
mp1[s] = append(mp1[s],str)
} else {
mp1[s] = []string{str}
}
}
for _,v := range mp1 {
res = append(res,v)
}
return res
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 128.最长连续序列 (opens new window)
题目:
给定一个未排序的整数数组 nums ,找出数字连续的最长序列(不要求序列元素在原数组中连续)的长度。
请你设计并实现时间复杂度为 O(n) 的算法解决此问题。
示例 1:
输入:nums = [100,4,200,1,3,2]
输出:4
解释:最长数字连续序列是 [1, 2, 3, 4]。它的长度为 4。
1
2
3
2
3
示例 2:
输入:nums = [0,3,7,2,5,8,4,6,0,1]
输出:9
1
2
2
提示:
- 0 <= nums.length <= 10^5
- -10^9 <= nums[i] <= 10^9
思路:
用一个哈希表存数组,然后遍历哈希表看看这个数是不是连续一串数的第一个,如果是则往后遍历。
代码:
class Solution {
public:
int longestConsecutive(vector<int>& nums) {
int res = 0;
unordered_set<int> h(nums.begin(),nums.end());
for(int x : h) {
if(h.count(x-1)==0) {
int y = x+1;
while(h.count(y)) y++;
res = max(res,y-x);
}
}
return res;
}
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func longestConsecutive(nums []int) int {
mp := make(map[int]int)
res := 0
for _,v := range nums {
mp[v] = 1
}
for x ,_ := range mp {
if mp[x-1]==0 {
y := x+1
for mp[y]!=0 {
y++
}
res = max(res,y-x)
}
}
return res
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17