|
3 | 3 | - 个人博客地址 [乡间小路](http://www.flyrie.top) |
4 | 4 |
|
5 | 5 | ## 动态规划 |
6 | | -| OJ | # | Title | C++ Solution | Python Solution | Explanation | Importance Leval | |
7 | | -| -------- | --- | -------------- | ------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ------------------------------------------------------------------------------------- | ---------------- | |
8 | | -| LeetCode | 10 | 正则表达式匹配 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/RegularExpressionMatching.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
9 | | -| LeetCode | 322 | 硬币兑换 | | | | | |
10 | | -| LeetCode | 518 | 硬币兑换 II | | | | | |
11 | | -| LeetCode | 32 | 最长有效括号 | | | | | |
12 | | -| LintCode | 92 | 背包问题 | | | | | |
13 | | -| LintCode | 125 | 背包问题 II | | | | | |
14 | | -| LeetCode | 198 | 打家劫舍 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/HouseRobber.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
15 | | -| LeetCode | 174 | 地下城游戏 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/DungeonGame.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
16 | | -| LintCode | 515 | 房屋染色 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/PaintHouse.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
17 | | -| LintCode | 516 | 房屋染色 II | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/LongestSubstringWithoutRepeatingCharacters.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
18 | | -| LintCode | 32 | 最长有效括号 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/LongestValidParentheses.cpp) | | | | |
| 6 | +| OJ | # | Title | C++ Solution | Python Solution | Explanation | Importance Leval | |
| 7 | +| -------- | --- | -------------- | -------------------------------------------------------------------------------------------------------------------- | --------------- | ------------------------------------------------------------------------------------- | ---------------- | |
| 8 | +| LeetCode | 10 | 正则表达式匹配 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/RegularExpressionMatching.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
| 9 | +| LeetCode | 322 | 硬币兑换 | | | | | |
| 10 | +| LeetCode | 518 | 硬币兑换 II | | | | | |
| 11 | +| LeetCode | 32 | 最长有效括号 | | | | | |
| 12 | +| LintCode | 92 | 背包问题 | | | | | |
| 13 | +| LintCode | 125 | 背包问题 II | | | | | |
| 14 | +| LeetCode | 198 | 打家劫舍 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/HouseRobber.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
| 15 | +| LeetCode | 174 | 地下城游戏 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/DungeonGame.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
| 16 | +| LintCode | 515 | 房屋染色 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/PaintHouse.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
| 17 | +| LintCode | 516 | 房屋染色 II | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/PaintHouse2.cpp) | | [动态规划解题](http://flyrie.top/2018/08/15/Dynamic_Programming_Algorithm_Solutions/) | | |
| 18 | +| LintCode | 32 | 最长有效括号 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Dynamic%20Programming/LongestValidParentheses.cpp) | | | | |
19 | 19 |
|
20 | 20 | ## 回溯法 |
21 | 21 | | OJ | # | Title | C++ Solution | Python Solution | Explanation | |
|
66 | 66 | | LeetCode | 29 | 两数相除 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Bit%20Manipulation/DivideTwoIntegers.cpp) | | | important | |
67 | 67 |
|
68 | 68 | ## 数组 |
69 | | -| OJ | # | Title | C++ Solution | Python Solution | Explanation | Importance Leval | |
70 | | -| -------- | --- | ---------- | ------------------------------------------------------------------------------------------ | --------------- | ----------- | ---------------- | |
71 | | -| LeetCode | 31 | 下一个排列 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Array/NextPermutation.cpp) | | | important | |
| 69 | +| OJ | # | Title | C++ Solution | Python Solution | Explanation | Importance Leval | |
| 70 | +| -------- | --- | ------------ | ----------------------------------------------------------------------------------------------------- | --------------- | ----------- | ---------------- | |
| 71 | +| LeetCode | 31 | 下一个排列 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Array/NextPermutation.cpp) | | | important | |
| 72 | +| LeetCode | 33 | 搜索旋转数组 | [C++](https://github.com/feipxyz/Algorithm-Solution/blob/master/Array/SearchInRotatedSortedArray.cpp) | | | important | |
0 commit comments