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

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

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.

参考解析:http://bangbingsyb.blogspot.com/2014/11/leetcode-permutation-sequence.html

思路:先算n!。.然后k/(n-1)!+1则为现在的第一个数字。更新k%=(n-1)!, n=n-1.

public class Solution {    public String getPermutation(int n, int k) {
if(n<=0) { return ""; } List
list=new ArrayList
(); int fac=1; for(int i=1;i<=n;i++) { list.add(i); fac*=i; } k--; //zero based StringBuilder sb=new StringBuilder(); while(n>0) { fac/=n; sb.append(list.remove(k/fac)); //di ji zu k%=fac; //di ji ge n--; } return sb.toString(); }}

 

 

 

 

转载于:https://www.cnblogs.com/Machelsky/p/5940776.html

你可能感兴趣的文章
MyBaits动态sql语句
查看>>
HDU4405(期望DP)
查看>>
拉格朗日乘子法 那些年学过的高数
查看>>
vs code 的便捷使用
查看>>
Spring MVC @ResponseBody返回中文字符串乱码问题
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JS 中的跨域请求
查看>>
JAVA开发环境搭建
查看>>
mysql基础语句
查看>>
Oracle中的rownum不能使用大于>的问题
查看>>
[Data Structure & Algorithm] 有向无环图的拓扑排序及关键路径
查看>>
cassandra vs mongo (1)存储引擎
查看>>
Visual Studio基于CMake配置opencv1.0.0、opencv2.2
查看>>
Vue音乐项目笔记(三)
查看>>
遍历Map对象
查看>>
计算剪贴板里仿制的代码行数
查看>>
MySQL索引背后的数据结构及算法原理
查看>>
#Leetcode# 209. Minimum Size Subarray Sum
查看>>
SDN第四次作业
查看>>
DM8168 DVRRDK软件框架研究
查看>>