- 浏览: 137492 次
文章分类
- 全部博客 (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, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could be form.
For example:
Given s = "aabb", return ["abba", "baab"].
Given s = "abc", return [].
[分析]
先按照Palindrome Permutation 的方法判断输入字符串 s 能否排列成为一个回文串。通过检查开始构造过程,有两个思路:
思路1:按照leetcode的提示,我们仅需构造回文的前半部分。先利用前面判断过程中的map获得回文前半部分所有的字符,相同字符排列在一起,然后按照Permutation II一题的思路获得前半部分所有的排列情况,最后组合回文的前后部分加入结果集。
思路2:从中间往两端递归构造回文串。
[ref]
https://leetcode.com/discuss/53638/0ms-easy-c-solution
https://leetcode.com/discuss/53613/my-accepted-java-solution
For example:
Given s = "aabb", return ["abba", "baab"].
Given s = "abc", return [].
[分析]
先按照Palindrome Permutation 的方法判断输入字符串 s 能否排列成为一个回文串。通过检查开始构造过程,有两个思路:
思路1:按照leetcode的提示,我们仅需构造回文的前半部分。先利用前面判断过程中的map获得回文前半部分所有的字符,相同字符排列在一起,然后按照Permutation II一题的思路获得前半部分所有的排列情况,最后组合回文的前后部分加入结果集。
思路2:从中间往两端递归构造回文串。
[ref]
https://leetcode.com/discuss/53638/0ms-easy-c-solution
https://leetcode.com/discuss/53613/my-accepted-java-solution
public class Solution { // Method 1 public List<String> generatePalindromes(String s) { List<String> ret = new ArrayList<String>(); if (s == null || s.length() == 0) return ret; if (s.length() == 1) {ret.add(s); return ret;} int[] map = new int[256]; for (int i = 0; i < s.length(); i++) map[s.charAt(i)]++; int oddCount = 0; int oddIdx = -1; StringBuilder half = new StringBuilder(); for (int i = 0; i < 256; i++) { if ((map[i] & 1) == 1) { oddIdx = i; oddCount++; if (oddCount == 2) return ret; } int halfCount = map[i] / 2; for (int j = 0; j < halfCount; j++) half.append((char)i); } List<String> halfPermutation = new ArrayList<String>(); getPermutation(half.toString().toCharArray(), new boolean[half.length()], new StringBuilder(), halfPermutation); for (String curr : halfPermutation) { StringBuilder curr2 = new StringBuilder(curr); if (oddIdx != -1) curr += (char)oddIdx; ret.add(curr + curr2.reverse().toString()); } return ret; } public void getPermutation(char[] chars, boolean[] used, StringBuilder item, List<String> result) { if (item.length() == chars.length) { result.add(item.toString()); } else { for (int i = 0; i < chars.length; i++) { if (used[i] || (i > 0 && chars[i] == chars[i - 1] && !used[i - 1])) continue; item.append(chars[i]); used[i] = true; getPermutation(chars, used, item, result); used[i] = false; item.deleteCharAt(item.length() - 1); } } } // Method 2 public List<String> generatePalindromes2(String s) { List<String> ret = new ArrayList<String>(); int[] map = new int[256]; for (int i = 0; i < s.length(); i++) map[s.charAt(i)]++; int oddCount = 0; int oddIdx = -1; for (int i = 0; i < 256; i++) { if ((map[i] & 1) == 1) { oddIdx = i; oddCount++; if (oddCount == 2) return ret; } } String curr = ""; if (oddIdx != -1) { curr += (char)oddIdx; map[oddIdx]--; } dfs(curr, map, s.length(), ret); return ret; } public void dfs(String curr, int[] map, int n, List<String> ret) { if (curr.length() < n) { for (int i = 0; i < map.length; i++) { if (map[i] > 0) { curr = (char)i + curr + (char)i; map[i] -= 2; dfs(curr, map, n, ret); curr = curr.substring(1, curr.length() - 1); map[i] += 2; } } } else { ret.add(curr); } } }
发表评论
-
Leetcode - Factor Combination
2015-08-28 09:53 861Numbers can be regarded as prod ... -
Leetcode - Generate Parentheses
2015-08-08 17:01 526[分析] 第一个思路(错误的~):假设递归函数返回 n - ... -
Leetcode - Word Search II
2015-08-03 21:25 972iven a 2D board and a list of w ... -
Leetcode - Word Search
2015-08-03 21:03 515Given a 2D board and a word, fi ... -
Leetcode - Subset
2015-08-02 12:06 949[分析] 三种思路 思路1:每层递归新加一个元素,第一层递归, ... -
Leetcode - Subset II
2015-08-02 12:13 956[分析] 延续Subset三种思路,关键是添加去重处理 思路 ... -
Leetcode - Gray Code
2015-08-01 17:26 579原题链接:https://leetcode.com/probl ... -
Leetcode - Permutation Sequence
2015-08-01 17:19 514原题链接:https://leetcode.com/probl ... -
Leetcode - Permutation II
2015-08-01 10:49 603原题链接:https://leetcode.com/probl ... -
Leetcode - Combination
2015-08-01 08:36 494[分析] 从 n 个数中取 k 个数,第一个数有 n 种取法… ... -
Leetcode - Combination Sum III
2015-07-31 22:04 522[分析] 思路就是枚举k个数所有可能的组合并判断是否符合条件。 ... -
Leetcode - Combination Sum II
2015-07-31 21:06 615[分析] 输入数组中的每个元素至多使用一次,相较于Combin ... -
Leetcode - Combination Sum
2015-07-31 20:21 587Given a set of candidate number ... -
Leetcode - Sudoku Solver
2015-07-31 09:14 466[分析] 做Valid Sudoku时表示3*3区块的下标想得 ... -
Leetcode - N Queues II
2015-07-30 20:52 405[分析] 做完N皇后第一题,这个就so easy~ pu ... -
Leetcode - N-Queens
2015-07-30 20:38 445[分析] N皇后摆放规则:两个皇后不能共存于同一行、同一列以及 ... -
Leetcode - Word Ladder II
2015-06-26 09:19 531Given two words (start and end) ... -
Leetcode - Combination Sum III
2015-06-10 10:09 549Find all possible combinati ... -
Leetcode - Palindrome Partition
2015-05-21 09:56 786Given a string s, partition s s ... -
Leetcode - WordBreak III
2015-04-16 08:30 463Given a string s and a dictio ...
相关推荐
java java_leetcode题解之Palindrome Permutation II.java
java java_leetcode题解之Palindrome Permutation.java
permutation - combination sum: 39, 40, 216 - palindrome partitioning - regex - sudoku solver: 37 排序 - merge sort - quick sort - insertion sort - selection sort - counting sort 位操作 - find the only...
266:https://leetcode-cn.com/problems/palindrome-permutation/ 题目: 思路:判断能否形成回文串,那只要数奇数个字符的种类是否大于2,大于2肯定不可以形成 代码: 409:...
另一类常见问题是字符串处理,如"Palindrome Permutation"(回文排列)。我们可以利用JavaScript的字符串方法(如split、reverse、join)和计数器来判断一个字符串是否可以通过重新排列字符形成回文串。 此外,对于...
leetcode category other hot keywords:Palindrome(mic), Subsequence Array 螺旋矩阵Spiral Matrix 顺时针打印矩阵 Next Permutation Product of Array Except Self 189.rotate-array 283.move-zero Range Sum ...
1)Permutation_Palindrome - Easy - Codechef - {涵盖了地图(stl)和回文逻辑的最佳使用} 2)句子中单词的出现 - 简单 - Coding Ninjas - {Learned to use 'getline','stringstream','map','itreating over a map'...
137 | [Single Number II](https://leetcode.com/problems/single-number-ii/) | [C++](./C++/single-number-ii.cpp) [Python](./Python/single-number-ii.py) | _O(n)_ | _O(1)_ | Medium ||| 190 | [Reverse Bits]...
- **Palindrome Number**:判断一个数字是否是回文数。 - **Search a 2D Matrix**:在二维矩阵中搜索目标值。 - **Search for a Range**:在一个排序数组中查找目标值的第一个和最后一个位置。 - **Search ...
**1.16 Palindrome LinkedList (234)** - **问题描述**:判断链表是否为回文结构。 - **解题思路**: - 使用快慢指针找到链表的中间位置。 - 反转后半部分链表,然后比较前后两部分是否完全相同。 **1.17 Odd ...
#### 九、Palindrome Permutation - **知识点:**哈希表、计数。 - **题目描述:**给定一个字符串,编写一个函数判定其是否为某个字符串的排列的回文串。 - **应用场景:**字符串处理中的常见问题,用于文本分析、...
- **基本计算器II(Basic Calculator II)**: 给定一个字符串表达式,实现一个基本计算器来计算并返回结果。 以上总结仅为部分知识点的简述,对于每一个具体的算法问题,都有其独特的解决思路和技巧,建议深入研究每...
leetcode Java 246 題目及解答 (英文) Contents 1 Rotate Array in Java 15 2 Reverse Words in a String II 19 3 Evaluate Reverse Polish Notation 21 4 Isomorphic Strings 25 5 Word Ladder 27 6 Word Ladder ...
根据提供的文件内容,我们可以了解到一些关于亚马逊公司面试中所采用的编程题目的详细信息,以及这些题目在LeetCode上的对应编号。文件内容中列出了一系列题目,它们覆盖了不同的编程领域,包括算法、数据结构以及...