forked from greyireland/algorithm-pattern
-
Notifications
You must be signed in to change notification settings - Fork 3
/
quickstart.md
120 lines (92 loc) · 3.93 KB
/
quickstart.md
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# 快速开始
## 数据结构与算法
数据结构是一种数据的表现形式,如链表、二叉树、栈、队列等都是内存中一段数据表现的形式。
算法是一种通用的解决问题的模板或者思路,大部分数据结构都有一套通用的算法模板,所以掌握这些通用的算法模板即可解决各种算法问题。
后面会分专题讲解各种数据结构、基本的算法模板、和一些高级算法模板,每一个专题都有一些经典练习题,完成所有练习的题后,你对数据结构和算法会有新的收获和体会。
先介绍两个算法题,试试感觉~
示例 1
[strStr](https://leetcode-cn.com/problems/implement-strstr/)
> 给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从 0 开始)。如果不存在,则返回 -1。
思路:核心点遍历给定字符串字符,判断以当前字符开头字符串是否等于目标字符串
```c++
int strStr(string haystack, string needle) {
if (needle.empty())
{
return 0;
}
if (haystack.size() < needle.size())
{
return -1;
}
int j;
// haystack.size() - needle.size() means haystack minus needle
// however, the last chance we find the needle is start from haystack - needle + 1!
for (int i = 0; i < haystack.size() - needle.size() + 1; ++i) {
for (j = 0; j < needle.size(); ++j) {
if (haystack[i+j] != needle[j])
{
break;
}
}
if (j == needle.size())
{
return i;
}
}
return -1;
}
```
需要注意点
- 循环时,i 不需要到 len-1
- 如果找到目标字符串,len(needle)==j
示例 2
[subsets](https://leetcode-cn.com/problems/subsets/)
> 给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。
思路:这是一个典型的应用回溯法的题目,简单来说就是穷尽所有可能性,算法模板如下
```c++
result = vector<vector<T>>
void backtrack(选择列表,路径):
if 满足结束条件:
result.emplace_back(路径)
return
for 选择 in 选择列表:
做选择
backtrack(选择列表,路径)
撤销选择
```
通过不停的选择,撤销选择,来穷尽所有可能性,最后将满足条件的结果返回
答案代码
```c++
vector<vector<int>> subsets(vector<int> &nums) {
vector<vector<int>> result;
vector<int> track;
backtrack(nums, 0, track, result);
return result;
}
void backtrack(const vector<int> &nums, int pos, vector<int> &track, vector<vector<int>> &result) {
// 插入当前组合
result.push_back(track);
for (int i = pos; i < nums.size(); ++i) {
// 每个值,都有两种可能,包含和不包含
// 先压入,包含
track.push_back(nums[i]);
// 递归处理包含当前值的情况
backtrack(nums, i + 1, track, result);
// 弹出,向后遍历,处理不包含的情况
track.pop_back();
}
}
```
说明:后面会深入讲解几个典型的回溯算法问题,如果当前不太了解可以暂时先跳过
## 面试注意点
我们大多数时候,刷算法题可能都是为了准备面试,所以面试的时候需要注意一些点
- 快速定位到题目的知识点,找到知识点的**通用模板**,可能需要根据题目**特殊情况做特殊处理**。
- 先去朝一个解决问题的方向!**先抛出可行解**,而不是最优解!先解决,再优化!
- 代码的风格要统一,熟悉各类语言的代码规范。
- 命名尽量简洁明了,尽量不用数字命名如:i1、node1、a1、b2
- 常见错误总结
- 访问下标时,不能访问越界
- 空值 nil 问题 run time error
## 练习
- [ ] [strStr](https://leetcode-cn.com/problems/implement-strstr/)
- [ ] [subsets](https://leetcode-cn.com/problems/subsets/)