- 浏览: 137541 次
文章分类
- 全部博客 (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
原题链接:https://leetcode.com/problems/permutation-sequence/
[分析]
思路1:调用 k 次NextPermutation.
思路2:数学解法,在n!排列中,每个第一位元素带领 (n-1)! 个排列数,假设 p = k / (n-1)!,则num[p]就是第一位上的数字,注意 k 要从0开始计数,因此进主循环前k--。
类似的方法求出剩下位置的数字。参考:
http://blog.csdn.net/doc_sgl/article/details/12840715
http://m.blog.csdn.net/blog/linhuanmars/22028697
[分析]
思路1:调用 k 次NextPermutation.
思路2:数学解法,在n!排列中,每个第一位元素带领 (n-1)! 个排列数,假设 p = k / (n-1)!,则num[p]就是第一位上的数字,注意 k 要从0开始计数,因此进主循环前k--。
类似的方法求出剩下位置的数字。参考:
http://blog.csdn.net/doc_sgl/article/details/12840715
http://m.blog.csdn.net/blog/linhuanmars/22028697
public class Solution { public String getPermutation(int n, int k) { if (n <= 0 || n > 9) return ""; int[] num = new int[n]; for (int i = 0; i < n; i++) num[i] = i + 1; int factorial = 1; for (int i = 2; i <= n; i++) factorial *= i; StringBuilder result = new StringBuilder(n); k--; for (int i = 0; i < n; i++) { factorial /= n - i; int selectIdx = k / factorial; result.append(num[selectIdx]); k %= factorial; for (int j = selectIdx; j < n - i - 1; j++) num[j] = num[j + 1]; } return result.toString(); } public String getPermutation1(int n, int k) { if (n <= 0 || n > 9) return ""; int[] num = new int[n]; for (int i = 0; i < n; i++) num[i] = i + 1; for (int i = 1; i < k; i++) nextPermutation(num); StringBuilder result = new StringBuilder(n); for (int i = 0; i < n; i++) result.append(num[i]); return result.toString(); } public void nextPermutation(int[] num) { int p = num.length - 2; while (p >= 0 && num[p] >= num[p + 1]) p--; if (p >= 0) { int q = p + 1; while (q < num.length && num[q] > num[p]) q++; int tmp = num[--q]; num[q] = num[p]; num[p] = tmp; } int q = num.length - 1; p = p + 1; while (p < q) { int tmp = num[p]; num[p] = num[q]; num[q] = tmp; p++; q--; } } }
发表评论
-
Leetcode - Integer to English Words
2015-09-04 20:53 1104[分析] 这题通过率之所以非常低是因为有很多corner ca ... -
Leetcode - Strobogrammatic Number III
2015-09-03 16:45 2179A strobogrammatic number is a n ... -
Leetcode - Palindrome Permutation II
2015-08-28 21:17 2214Given a string s, return all th ... -
Leetcode - Factor Combination
2015-08-28 09:53 861Numbers can be regarded as prod ... -
Leetcode - Basic Calculator II
2015-08-27 09:16 906mplement a basic calculator to ... -
Leetcode - Factorial Trailing Zeroes
2015-08-25 09:00 430[思路] 数乘积结果的后缀0,其实就是数结果中有多少个因子10 ... -
Leetcode - Ugly Number II
2015-08-24 22:54 1163[分析] 暴力的办法就是从1开始检查每个数是否是丑数,发现丑数 ... -
Leetcode - Excel Sheet Column Title
2015-08-24 10:24 641[分析] 十进制转26进制,需要注意的是26进制是以1为最小数 ... -
Leetcode - Max Points on a Line
2015-08-23 15:30 724[分析] 两条直线若包含一个公共点且斜率相同,则为同一条直线。 ... -
Leetcode - Fraction to Recurring Decimal
2015-08-23 10:05 468[分析] 处理int型整数运算时,为避免溢出,省事的做法就是内 ... -
Leetcode - Count Primes
2015-08-22 13:42 511[ref] https://en.wikipedia.org/ ... -
Leetcode - Strobogrammatic Number
2015-08-22 10:48 1092A strobogrammatic number is a n ... -
Leetcode - Add Binary
2015-08-21 09:28 470[分析] 从低位往高位逐位相加,就是这么一个简单的题却花了我一 ... -
Leetcode - Rotate Image
2015-08-19 19:51 500[分析] 自己的思路:从外到内一圈圈顺时针旋转90度,坐标映射 ... -
Missing Ranges
2015-08-19 09:48 515[分析] 此题若不考虑极大值极小值相关的corner case ... -
Leetcode - Bitwise AND of Number Range
2015-08-17 09:41 507Given a range [m, n] where 0 &l ... -
Leetcode - Pow(x, n)
2015-08-11 09:45 464[分析] 数值计算类型题目,二分法或者借助位运算,本题两种方法 ... -
Leetcode - Divide Two Integers
2015-08-11 09:00 447[分析] 不能使用乘、除、取模运算,直接的思路当然是一次减一 ... -
Leetcode - sqrt(x)
2015-08-10 21:40 809[分析] 这是一道数值计算的题目,Code Ganker中指出 ... -
Leetcode - Generate Parentheses
2015-08-08 17:01 526[分析] 第一个思路(错误的~):假设递归函数返回 n - ...
相关推荐
js js_leetcode题解之60-permutation-sequence.js
java java_leetcode题解之Permutation Sequence.java
- **2.1.13 Permutation Sequence** - 给定数字集合,返回第n个排列。 - 实现思路:利用数学方法计算出每一位上的数字。 - **2.1.14 Valid Sudoku** - 判断给定的数独是否有效。 - 实现思路:分别检查行、列和...
# [LeetCode](https://leetcode.com/problemset/algorithms/) !... Up to date (2016-12-18), there are `447` Algorithms / `13` ...31 | [Next Permutation](https://leetcode.com/problems/next-permutation/)| ...
leetcode LeetCode 这个库用于总结leetcode中遇到的习题 常用数据结构习题总结 1.线性表 解决进度 No. Describition mark 1 Remove Duplicates from Sorted Array 2 Remove Duplicates from Sorted Array II 3 ...
1. **Permutation Sequence**:这个问题涉及到排列组合和字符串操作。它要求生成一个给定整数n的所有可能排列的序列。这通常需要对数字进行位操作或使用回溯法。 2. **First Missing Positive**:这是一个关于数组...
LeetCode的第60题,也称为"排列序列"(Permutation Sequence),要求我们给定一个整数n,生成所有可能的n个数字的排列,并按照字典序排序。例如,当n=3时,排列序列应该是"123", "132", "213", "231", "312", "321...
236 Permutation Sequence 573 237 Generate Parentheses 575 238 Combination Sum 577 239 Combination Sum II 579 240 Combination Sum III 581 241 Combinations 583 242 Letter Combinations of a Phone Number ...
这个“leetcode_basic_60”主题可能聚焦于LeetCode上的第60题,即“Permutation Sequence”(排列序列)。这个问题涉及到组合数学、递归和字符串处理,是Python编程者常见的练习题目。 【描述】"leetcode_basic_60...
leetcode SDE-问题 标准 SDE 问题列表 第一天:(数组) 日 问题陈述 解决方案 困难 使用的数据结构 使用的算法 时间复杂度 空间复杂度 补充阅读 在 N 个整数的数组中查找重复项 中等的 大批 不适用 上) O(1) 在不...