tags: 目录
这篇博客是我平时刷Leetcode,剑指offer题目和牛客网上的招聘题目等的代码、思路。代码和思路都保存在我的github上,我对于每一道题都尽量做到c++和python都进行实现。在解题的过程中会参考一些资料,难以面面俱到的写出参考信息,如若侵权,请联系删除。
代码思路的github连接:https://github.com/Richard-coder/Programming-Practice/tree/master
| 题号 | 题目&&题解 | c++ | python | 难度 |
|---|---|---|---|---|
| 26 | Remove Duplicates from Sorted Array | c++ | easy | |
| 80 | RemoveDuplicatesFromSortedArrayII | c++ | python | easy |
| 66 | PlusOne | c++ | python | easy |
| 118 | Pascal'sTriangle | c++ | python | easy |
| 119 | Pascal'sTriangleII | c++ | python | easy |
| 88 | MergeSortedArray | c++ | python | easy |
| 1 | TwoSum | c++ | python | easy |
| 15 | 3Sum | c++ | python | medium |
| 公司 | 题目&&题解 | c++ | python |
|---|---|---|---|
| 网易 | 合唱团 | c++ | python |
由于最近时间比较紧张, 部分题目的思路采用copy他人博客加自己总结的形式, 并且没有写python的代码, 有时间后会完善思路总结, 并补上Python的额代码.
| 考察点 | 题目&&题解 | c++ | python |
|---|---|---|---|
| 排序 | 快速排序 | c++ | python |