Skip to content

Commit 36e6230

Browse files
author
王鹏
committed
docs: add _131_partition
1 parent a6682ec commit 36e6230

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LeetCode-Java
22
## 说明
3-
- leetcode练习,坚持每天一道,目前已完成249道
3+
- leetcode练习,坚持每天一道,目前已完成250道
44
- 解题语言是Java
55
- 每道题都是可编译运行的
66
- 每道题有自己的方法和他人优秀解法
@@ -20,7 +20,7 @@
2020

2121
- [x] [130. 被围绕的区域](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_130_solve.java)
2222

23-
- [ ] [131. 分割回文串](https://leetcode-cn.com/problems/palindrome-partitioning/)
23+
- [x] [131. 分割回文串](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_131_partition.java)
2424

2525
- [ ] [132. 分割回文串 II](https://leetcode-cn.com/problems/palindrome-partitioning-ii/)
2626

@@ -59,9 +59,9 @@
5959
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
6060
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
6161

62-
### 题目列表(更新中—已完成249
62+
### 题目列表(更新中—已完成250
6363

64-
[Leetcode-Java(240+题解,持续更新、欢迎star&留言&交流)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_130_solve.java)
64+
[Leetcode-Java(250+题解,持续更新、欢迎star&留言&交流)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_131_partition.java)
6565

6666
| No | 题目 | 解决方案 | 相关话题 | 难度 | 备注 |
6767
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -195,6 +195,7 @@
195195
| #128 | [最长连续序列](https://leetcode-cn.com/problems/longest-consecutive-sequence/) | [LongestConsecutive](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_128_longestConsecutive.java) | [并查集](https://leetcode-cn.com/tag/union-find/)[数组](<https://leetcode-cn.com/tag/array/>) | Hard | |
196196
| #129 | [求根到叶子节点数字之和](https://leetcode-cn.com/problems/sum-root-to-leaf-numbers/) | [SumNumbers](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_129_sumNumbers.java) | [](https://leetcode-cn.com/tag/tree/)[DFS](https://leetcode-cn.com/tag/depth-first-search/) | Medium | |
197197
| #130 | [被围绕的区域](https://leetcode-cn.com/problems/surrounded-regions/) | [Solve](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_130_solve.java) | [BFS](https://leetcode-cn.com/tag/breadth-first-search/)[DFS](https://leetcode-cn.com/tag/depth-first-search/)[并查集](https://leetcode-cn.com/tag/union-find/) | Medium | |
198+
| #131 | [分割回文串](https://leetcode-cn.com/problems/palindrome-partitioning/) | [Partition](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_131_partition.java) | [回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Medium | |
198199
| #136 | [只出现一次的数字](https://leetcode-cn.com/problems/single-number/) | [SingleNumber](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_136_singleNumber.java) | [哈希表](<https://leetcode-cn.com/tag/hash-table/>)[位运算](https://leetcode-cn.com/tag/bit-manipulation/) | Easy | 位运算了解下 |
199200
| #138 | [复制带随机指针的链表](https://leetcode-cn.com/problems/copy-list-with-random-pointer/) | [CopyRandomList](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_138_CopyRandomList.java) | [哈希表](<https://leetcode-cn.com/tag/hash-table/>)[链表](https://leetcode-cn.com/tag/linked-list/) | Medium | |
200201
| #139 | [单词拆分](https://leetcode-cn.com/problems/word-break/) | [WordBreak](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_139_wordBreak.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | 回溯实现耗时 |

0 commit comments

Comments
 (0)