|
3 | 3 | [](https://996.icu)
|
4 | 4 |
|
5 | 5 | ## 说明
|
6 |
| -- leetcode练习,坚持每天一道,目前已完成162道 |
| 6 | +- leetcode练习,坚持每天一道,目前已完成163道 |
7 | 7 | - 解题语言是Java
|
8 | 8 | - 每道题都是可编译运行的
|
9 | 9 | - 每道题有自己的方法和他人优秀解法
|
|
17 | 17 |
|
18 | 18 | - [x] [39. 组合总和 - Medium](https://leetcode-cn.com/problems/combination-sum/)
|
19 | 19 |
|
20 |
| -- [ ] [46. 全排列 - Medium](https://leetcode-cn.com/problems/permutations/) |
| 20 | +- [x] [46. 全排列 - Medium](https://leetcode-cn.com/problems/permutations/) |
21 | 21 |
|
22 | 22 | - [ ] [47. 全排列 II - Medium](https://leetcode-cn.com/problems/permutations-ii/)
|
23 | 23 |
|
|
58 | 58 | - [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
|
59 | 59 | - [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
|
60 | 60 |
|
61 |
| -### 题目列表(更新中--已完成162) |
| 61 | +### 题目列表(更新中--已完成163) |
62 | 62 |
|
63 | 63 | | No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
|
64 | 64 | | ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
|
|
106 | 106 | | #43 | [字符串相乘](https://leetcode-cn.com/problems/multiply-strings/) | [Multiply](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_43_multiply.java) | [数学](<https://leetcode-cn.com/tag/math/>)、[字符串](<https://leetcode-cn.com/tag/string/>) | Medium | |
|
107 | 107 | | #44 | [通配符匹配](https://leetcode-cn.com/problems/wildcard-matching/) | [IsMatch](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_44_isMatch.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)、[字符串](<https://leetcode-cn.com/tag/string/>)、[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>)、[回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Hard | |
|
108 | 108 | | #45 | [跳跃游戏 II](https://leetcode-cn.com/problems/jump-game-ii/) | [Jump](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_45_jump.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)、[数组](<https://leetcode-cn.com/tag/array/>) | Hard | |
|
| 109 | +| #46 | [全排列](https://leetcode-cn.com/problems/permutations/) | [Permute](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_46_permute.java) | [回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Medium | | |
109 | 110 | | #49 | [字母异位词分组](https://leetcode-cn.com/problems/group-anagrams/) | [GroupAnagrams](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_49_groupAnagrams.java) | [哈希表](<https://leetcode-cn.com/tag/hash-table/>)、[字符串](<https://leetcode-cn.com/tag/string/>) | Medium | |
|
110 | 111 | | #51 | [N皇后](https://leetcode-cn.com/problems/n-queens/) | [SolveNQueens](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_51_solveNQueens_2.java) | [回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Hard | [自己原始解法](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_51_solveNQueens.java) |
|
111 | 112 | | #53 | [最大子序和](https://leetcode-cn.com/problems/maximum-subarray/) | [MaxSubArray.java](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_53_maxSubArray.java) | [数组](<https://leetcode-cn.com/tag/array/>)、[分治算法](<https://leetcode-cn.com/tag/divide-and-conquer/>)、[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Easy | |
|
|
0 commit comments