博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Permutation Sequence
阅读量:5757 次
发布时间:2019-06-18

本文共 2300 字,大约阅读时间需要 7 分钟。

Permutation Sequence

 
Total Accepted: 6325 
Total Submissions: 29550

 

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):

  1. "123"
  2. "132"
  3. "213"
  4. "231"
  5. "312"
  6. "321"

 

Given n and k, return the kth permutation sequence.

Note: Given n will be between 1 and 9 inclusive.

 

Have you been asked this question in an interview? 

假设有n个元素,第K个permutation是

a1, a2, a3, .....   ..., an
那么a1是哪一个数字呢?
那么这里,我们把a1去掉,那么剩下的permutation为
a2, a3, .... .... an, 共计n-1个元素。 n-1个元素共有(n-1)!组排列,那么这里就可以知道
设变量K1 = K
a1 = K1 / (n-1)!// 第一位的选择下标
同理,a2的值可以推导为

K2 = K1 % (n-1)!

a2 = K2 / (n-2)!
。。。。。

K(n-1) = K(n-2) /2!

a(n-1) = K(n-1) / 1!
an = K(n-1)

 

 

1 public class Solution { 2     public String getPermutation(int n, int k) { 3         int data[]=new int[10]; 4         boolean visited[]=new boolean[10]; 5         data[0]=data[1]=1; 6         ArrayList
list=new ArrayList
(); 7 for(int i=1;i<=n;i++) 8 { 9 data[i]=data[i-1]*(i);10 list.add(i);11 }12 String result="";13 k--;14 for(int i=n-1;i>=0;i--)15 {16 int cur=k/data[i];17 int j=1;18 for(;j<9;j++)     //从数组中 针对未访问过的元素visited[]=false 找第cur个,找到的为j19 {20 if(visited[j]==false)21 cur--;22 if(cur<0)23 break;24 }25 visited[j]=true;26 result+=(j);27 k=k%data[i];28 }29 return result;30 }31 32 }

 

解二

1 public class Solution { 2     public String getPermutation(int n, int k) { 3         int data[]=new int[n+1]; 4         boolean visited[]=new boolean[n+1]; 5         data[0]=data[1]=1; 6         ArrayList
list=new ArrayList
(); 7 for(int i=1;i<=n;i++) 8 { 9 data[i]=data[i-1]*(i);10 list.add(i);11 }12 String result="";13 k--;14 for(int i=n-1;i>=0;i--)15 {16 int cur=k/data[i];17 result+=list.remove(cur); //第cur个未正解,从list中删除18 k=k%data[i];19 }20 return result;21 }22 }

 

 

基本思路就是

转载地址:http://empkx.baihongyu.com/

你可能感兴趣的文章
HybridDB实例新购指南
查看>>
C语言及程序设计提高例程-35 使用指针操作二维数组
查看>>
华大基因BGI Online的云计算实践
查看>>
排序高级之交换排序_冒泡排序
查看>>
Cocos2d-x3.2 Ease加速度
查看>>
[EntLib]关于SR.Strings的使用办法[加了下载地址]
查看>>
中小型网站架构分析及优化
查看>>
写shell的事情
查看>>
负载均衡之Haproxy配置详解(及httpd配置)
查看>>
标准与扩展ACL 、 命名ACL 、 总结和答疑
查看>>
查找恶意的TOR中继节点
查看>>
MAVEN 属性定义与使用
查看>>
shell高级视频答学生while循环问题
查看>>
使用@media实现IE hack的方法
查看>>
《11招玩转网络安全》之第一招:Docker For Docker
查看>>
hive_0.11中文用户手册
查看>>
hiveserver2修改线程数
查看>>
oracle体系结构
查看>>
Microsoft Exchange Server 2010与Office 365混合部署升级到Exchange Server 2016混合部署汇总...
查看>>
Proxy服务器配置_Squid
查看>>