topic60

package
v0.0.0-...-b071cee Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2023 License: GPL-3.0 Imports: 1 Imported by: 0

README

60.排列序列

1. 题目描述

给出集合  [1,2,3,...,n] ,其所有元素共有  n! 种排列。

按大小顺序列出所有排列情况,并一一标记,当  n = 3 时, 所有排列如下:

  • "123"
  • "132"
  • "213"
  • "231"
  • "312"
  • "321" 给定  n 和  k ,返回第  k  个排列。

 

示例 1:


输入:n = 3, k = 3
输出:"213"

示例 2:


输入:n = 4, k = 9
输出:"2314"

示例 3:


输入:n = 3, k = 1
输出:"123"

 

提示:

  • 1 <= n <= 9
  • 1 <= k <= n!

标签 递归 数学

2. 解题

CV大法好

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL