-
Notifications
You must be signed in to change notification settings - Fork 66
/
README.md
44 lines (24 loc) · 2.9 KB
/
README.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
## 项目介绍
- 此项目是《剑指offer》第二版里算法面试题的Python3实现版本。
- 包括数组、字符串、链表、树、栈、队列和哈希表等数据结构的面试题。
- 查找、排序、动态规划、贪心等算法题。
- 收录的都是各大公司常考的题目。
扎实的基本功是成为优秀程序员的前提条件,而这些体现在编程语言、数据结构和算法上,这也是此项目的初衷。帮助自己的同时也帮助各位同学在各自的道路上能够走得更远。
**有意向一起完成此项目或者有问题、有补充的可以加入《剑指offer》讨论群【818185620】<a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=8c188e86e0eac4a214861c2c706a9c0baf75176e16e52f07b8a64d1a13f99a0d"><img border="0" src="http://pub.idqqimg.com/wpa/images/group.png" alt="《剑指offer》讨论群" title="《剑指offer》讨论群"></a>**
- **请关注 AIArea 公众号:算法工程师**
- ![](https://github.com/NLP-LOVE/Introduction-NLP/raw/master/img/2020-2-3_16-0-25.png?raw=true)
## 目录
**项目持续更新中......**
| 类型 | 题型 |
| -------- | ------------------------------------------------------------ |
| 数据结构 | [Interview-3:数组中重复的数字](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-3.md) |
| 数据结构 | [Interview-4:二维数组中的查找](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-4.md) |
| 数据结构 | [Interview-5:字符串替换空格](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-5.md) |
| 数据结构 | [Interview-6:从尾到头打印链表](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-6.md) |
| 数据结构 | [Interview-7:重建二叉树](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-7.md) |
| 数据结构 | [Interview-8:二叉树中序遍历的下一个节点](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-8.md) |
| 数据结构 | [Interview-9:用两个栈实现队列](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-9.md) |
| 数据结构 | [Interview-10:斐波那契数列](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-10.md) |
| 数据结构 | [Inverview-59:队列的最大值](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Inverview-59.md) |
| 数据结构 | [Inverview-62:圆圈中最后剩下的数字](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/Interview-62.md) |
| 查找 | [LeetCode-704:二分查找](https://github.com/NLP-LOVE/CodingInterviews2-ByPython/blob/master/Algorithm/LeetCode-704_binary_search.md) |