-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathPermutationSequence.cs
executable file
·58 lines (55 loc) · 2.91 KB
/
PermutationSequence.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Source : https://leetcode.com/problems/permutation-sequence/
// Author : codeyu
// Date : Saturday, December 10, 2016 10:33:39 PM
/**********************************************************************************
*
* The set [1,2,3,…,n] contains a total of n! unique permutations.
*
* By listing and labeling all of the permutations in order,
* We get the following sequence (ie, for n = 3):
*
* "123"
* "132"
* "213"
* "231"
* "312"
* "321"
*
*
*
* Given n and k, return the kth permutation sequence.
*
* Note: Given n will be between 1 and 9 inclusive.
*
**********************************************************************************/
using System;
using System.Collections.Generic;
using Algorithms.Utils;
namespace Algorithms
{
public class Solution060
{
public static string GetPermutation(int n, int k)
{
int total = factorial(n);
string candidate = ("123456789").Substring(0, n);
string res = "";
for(int i = 0; i < n; i++)//依次计算排列的每个位
{
total /= (n-i);
int index = (k-1) / total;
res += candidate[index];
candidate = candidate.Remove(index, 1);
k -= index*total;
}
return res;
}
static int factorial(int n)
{
int res = 1;
for(int i = 2; i <= n; i++)
res *= i;
return res;
}
}
}