首页 > 其他 > 详细

第k个排列

时间:2017-06-15 21:36:23      阅读:394      评论:0      收藏:0      [点我收藏+]

给定 n 和 k,求123..n组成的排列中的第 k 个排列。

 注意事项

1 ≤ n ≤ 9

样例

对于 n = 3, 所有的排列如下:

123
132
213
231
312
321

如果 k = 4, 第4个排列为,231.

 1 public class PaiLieK
 2 {
 3     public String getPermutation(int n, int k)
 4     {
 5         List<Integer> list = new ArrayList<>();
 6         List<Integer> list1 = new ArrayList<>();
 7         for(int i = 1; i <= n; i++)
 8         {
 9             list.add(i);
10         }
11 
12         boolean has = true;
13         first:
14         for(int i = 0; i < Math.pow(10,n);i++)
15         {
16             for(int j = 0; j < list.size(); j++)
17             {
18                 if(!(i+"").contains(list.get(j)+""))
19                 {
20                     has = false;
21                     continue ;
22                 }
23             }
24             if(has&&list.size() == getDigits(i))
25             {
26                 list1.add(i);
27             }
28             has = true;
29         }
30         Integer integer=list1.get(k-1);
31         return String.valueOf(integer);
32     }
33 
34 
35     public int getDigits(int i)
36     {
37         int count = 0;
38         while(i >0)
39         {
40             count++;
41             i /=10;
42         }
43         return count;
44     }
45     @Test
46     public void testGetDigits()
47     {
48         System.out.println(getDigits(198));
49         getDigits(198);
50     }
51     @Test
52     public void testGetPermutation()
53     {
54         String permutation = getPermutation(3, 4);
55         System.out.println(permutation);
56     }
57 
58 }

 

第k个排列

原文:http://www.cnblogs.com/zkycode/p/7019895.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!