|
3 | 3 | [](https://996.icu)
|
4 | 4 |
|
5 | 5 | ## 说明
|
6 |
| -- leetcode练习,坚持每天一道,目前已完成155道 |
| 6 | +- leetcode练习,坚持每天一道,目前已完成156道 |
7 | 7 | - 解题语言是Java
|
8 | 8 | - 每道题都是可编译运行的
|
9 | 9 | - 每道题有自己的方法和他人优秀解法
|
|
30 | 30 |
|
31 | 31 | - [x] [279. 完全平方数](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_279_numSquares.java)
|
32 | 32 |
|
33 |
| -- [ ] [309. 最佳买卖股票时机含冷冻期](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/) |
| 33 | +- [x] [309. 最佳买卖股票时机含冷冻期](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_309_maxProfit.java) |
34 | 34 |
|
35 | 35 | - [ ] [338. 比特位计数](https://leetcode-cn.com/problems/counting-bits/)
|
36 | 36 |
|
|
69 | 69 | - [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
|
70 | 70 | - [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
|
71 | 71 |
|
72 |
| -### 题目列表(更新中--已完成155) |
| 72 | +### 题目列表(更新中--已完成156) |
73 | 73 |
|
74 | 74 | | No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
|
75 | 75 | | ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
|
|
190 | 190 | | #303 | [区域和检索 - 数组不可变](https://leetcode-cn.com/problems/range-sum-query-immutable/) | [NumArray](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_303_NumArray.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Easy | |
|
191 | 191 | | #304 | [二维区域和检索 - 矩阵不可变](https://leetcode-cn.com/problems/range-sum-query-2d-immutable/) | [NumMatrix](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_304_NumMatrix.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
|
192 | 192 | | #307 | [区域和检索 - 数组可修改](https://leetcode-cn.com/problems/range-sum-query-mutable/) | [NumArray](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_307_NumArray_2.java) | [树状数组](https://leetcode-cn.com/tag/binary-indexed-tree/)、[线段树](https://leetcode-cn.com/tag/segment-tree/) | Medium | |
|
| 193 | +| #309 | [最佳买卖股票时机含冷冻期](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/) | [MaxProfit](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_309_maxProfit.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | | |
193 | 194 | | #315 | [计算右侧小于当前元素的个数](https://leetcode-cn.com/problems/count-of-smaller-numbers-after-self/) | [CountSmaller](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_315_countSmaller_2.java) | [树状数组](https://leetcode-cn.com/tag/binary-indexed-tree/)、[线段树](https://leetcode-cn.com/tag/segment-tree/)、[二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)、[分治算法](<https://leetcode-cn.com/tag/divide-and-conquer/>) | Hard | |
|
194 | 195 | | #322 | [零钱兑换](https://leetcode-cn.com/problems/coin-change/) | [CoinChange](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_322_coinChange.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
|
195 | 196 | | #328 | [奇偶链表](https://leetcode-cn.com/problems/odd-even-linked-list/) | [OddEvenList](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_328_OddEvenList.java) | [链表](https://leetcode-cn.com/tag/linked-list/) | Medium | |
|
|
0 commit comments