- 浏览: 138582 次
文章分类
- 全部博客 (189)
- Tree (14)
- Dynamic Programming (34)
- Array (20)
- Search (1)
- Hash (12)
- Backtracking (22)
- Divide and Conque (8)
- Greedy (6)
- Stack (12)
- software (0)
- List (7)
- Math (22)
- Two pointers (16)
- String (20)
- Linux (1)
- Sliding Window (4)
- Finite State Machine (1)
- Breadth-first Search (7)
- Graph (4)
- DFS (6)
- BFS (3)
- Sort (9)
- 基础概念 (2)
- 沟通表达 (0)
- Heap (2)
- Binary Search (15)
- 小结 (1)
- Bit Manipulation (8)
- Union Find (4)
- Topological Sort (1)
- PriorityQueue (1)
- Design Pattern (1)
- Design (1)
- Iterator (1)
- Queue (1)
最新评论
-
likesky3:
看了数据结构书得知并不是迭代和递归的区别,yb君的写法的效果是 ...
Leetcode - Graph Valid Tree -
likesky3:
迭代和递归的区别吧~
Leetcode - Graph Valid Tree -
qb_2008:
还有一种find写法:int find(int p) { i ...
Leetcode - Graph Valid Tree -
qb_2008:
要看懂这些技巧的代码确实比较困难。我是这么看懂的:1. 明白这 ...
Leetcode - Single Num II -
qb_2008:
public int singleNumber2(int[] ...
Leetcode - Single Num II
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s = "aab",
Return
[
["aa","b"],
["a","a","b"]
]
[分析] 递归尝试所有的分割法。分割当前子串,第一刀依次切取长度为1,为2,一直到最后,若切取的为回文串对后面未分割的子串继续递归分割。借助辅助数组isPalin[][]在分割时剪枝。递归的思路和WordBreakII 非常相似。
Return all possible palindrome partitioning of s.
For example, given s = "aab",
Return
[
["aa","b"],
["a","a","b"]
]
[分析] 递归尝试所有的分割法。分割当前子串,第一刀依次切取长度为1,为2,一直到最后,若切取的为回文串对后面未分割的子串继续递归分割。借助辅助数组isPalin[][]在分割时剪枝。递归的思路和WordBreakII 非常相似。
public class Solution { public List<List<String>> partition(String s) { List<List<String>> result = new ArrayList<List<String>>(); if (s == null || s.length() == 0) return result; int N = s.length(); boolean[][] isPalin = new boolean[N][N]; for (int i = 0; i < N - 1; i++) { isPalin[i][i] = true; isPalin[i][i + 1] = s.charAt(i) == s.charAt(i + 1); } isPalin[N - 1][N - 1] = true; for (int len = 3; len <= N; len++) { for (int i = 0; i + len - 1 < N; i++) { int j = i + len - 1; isPalin[i][j] = s.charAt(i) == s.charAt(j) && isPalin[i + 1][j - 1]; } } recur(s, 0, isPalin, new ArrayList<String>(), result); return result; } public void recur(String s, int start, boolean[][] isPalin, List<String> item, List<List<String>> result) { if (start == s.length()) { result.add(new ArrayList<String>(item)); return; } int N = s.length(); for (int i = start; i < N; i++) { if(isPalin[start][i]) { item.add(s.substring(start, i + 1)); recur(s, i + 1, isPalin, item, result); item.remove(item.size() - 1); } } } }
发表评论
-
Leetcode - Palindrome Permutation II
2015-08-28 21:17 2216Given a string s, return all th ... -
Leetcode - Factor Combination
2015-08-28 09:53 867Numbers can be regarded as prod ... -
Leetcode - Ugly Number II
2015-08-24 22:54 1169[分析] 暴力的办法就是从1开始检查每个数是否是丑数,发现丑数 ... -
Leetcode - Paint House II
2015-08-20 20:37 1612There are a row of n houses, ea ... -
Leetcode - Maximum Square
2015-08-16 13:33 516Given a 2D binary matrix filled ... -
Leetcode - Paint House
2015-08-16 10:48 1154There are a row of n houses, ea ... -
Leetcode - Generate Parentheses
2015-08-08 17:01 531[分析] 第一个思路(错误的~):假设递归函数返回 n - ... -
Leetcode - Word Search II
2015-08-03 21:25 981iven a 2D board and a list of w ... -
Leetcode - Word Search
2015-08-03 21:03 523Given a 2D board and a word, fi ... -
Leetcode - Subset
2015-08-02 12:06 954[分析] 三种思路 思路1:每层递归新加一个元素,第一层递归, ... -
Leetcode - Subset II
2015-08-02 12:13 960[分析] 延续Subset三种思路,关键是添加去重处理 思路 ... -
Leetcode - Gray Code
2015-08-01 17:26 583原题链接:https://leetcode.com/probl ... -
Leetcode - Permutation Sequence
2015-08-01 17:19 518原题链接:https://leetcode.com/probl ... -
Leetcode - Permutation II
2015-08-01 10:49 609原题链接:https://leetcode.com/probl ... -
Leetcode - Combination
2015-08-01 08:36 506[分析] 从 n 个数中取 k 个数,第一个数有 n 种取法… ... -
Leetcode - Combination Sum III
2015-07-31 22:04 529[分析] 思路就是枚举k个数所有可能的组合并判断是否符合条件。 ... -
Leetcode - Combination Sum II
2015-07-31 21:06 621[分析] 输入数组中的每个元素至多使用一次,相较于Combin ... -
Leetcode - Combination Sum
2015-07-31 20:21 592Given a set of candidate number ... -
Leetcode - Sudoku Solver
2015-07-31 09:14 474[分析] 做Valid Sudoku时表示3*3区块的下标想得 ... -
Leetcode - N Queues II
2015-07-30 20:52 410[分析] 做完N皇后第一题,这个就so easy~ pu ...
相关推荐
《在IDE中高效进行LeetCode练习:leetcode-editor的深度解析》 在编程学习与技能提升的过程中,LeetCode作为一款广受欢迎的在线编程挑战平台,帮助众多开发者锻炼算法思维,提高编程能力。而为了进一步提升练习体验...
在IDE中解决LeetCode问题,支持leetcode.com与leetcode-cn.com,满足基本的做题需求。 理论上支持: IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion GoLand DataGrip Rider MPS Android Studio。
leetcode-cli-plugins leetcode-cli 的第 3 方插件。 什么是 如何使用 如何使用 插件 名称 描述 增强的命令 按公司或标签过滤问题 list 不要在同一台计算机上使 Chrome 的会话过期 login 不要在同一台计算机上使 ...
LeetCode Editor 7.4 版本的下载是一个名为 "leetcode-editor" 的压缩包文件。这个压缩包的导入过程非常简单,只需要将它直接拖入 IDEA 界面,IDEA 会自动识别并安装插件。这种方式使得安装过程无需额外的步骤,对于...
c c语言_leetcode 0009_palindrome_number.zip
~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/vsc-leetcode-cli/bin/leetcode /usr/local/bin/leetcode 修改模板 open ~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/...
leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源
解题思路思路和LeetCode-python 503.下一个更大元素 II一致,只是这里求的是下标的距离,而不是数值倒序搜索,用到栈,栈里存储索引情况1:若栈为
《PyPI官网下载 | leetcode-export-1.1.tar.gz》 在编程世界里,LeetCode是一个备受程序员喜爱的在线平台,它提供了大量的算法题目,帮助开发者提升编程技能和解决问题的能力。而Python作为一门广泛使用的高级编程...
leetcode-cheat 的发布 它是什么 ? 这是一个chrome 扩展,可以帮助您更高效地使用 leetcode。您可以从 重要: leetcode-cheat 现在只支持中文版。 也就是说不完全支持leetcode.com,但是你可以用leetcode-cn.com代替...
leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码
leetcode-cli 一个享受 leetcode 的高效 cli 工具! 非常感谢 leetcode.com,一个非常棒的网站! ⦙⦙⦙⦙⦙⦙⦙⦙ 一个很打问题的方法。 问题来缓解离线思考。 编码前的源代码。 居住和与 leetcode.com。 下载你...
`swift-Swif-LeetCode-Utils` 是一个实用工具库,它为Swift程序员提供了方便快捷的方法来处理这些问题。这个项目可以帮助你更高效地进行LeetCode上的编程练习,提升你的解决方案的可读性和简洁性。 首先,让我们...
js js_leetcode题解之9-palindrome-number.js
javascript js_leetcode题解之131-palindrome-partitioning.js
javascript js_leetcode题解之132-palindrome-partitioning-ii.js
c语言入门 C语言_leetcode题解之09-palindrome-number.c
java java_leetcode-115-distinct-subsquences
java java_leetcode-112-path-sum