练习专区

今天的一小步就是明天的一大步
Problem 1856 栈的应用:n个数的全排列
Accepted: 10   Total Submit: 35
Time Limit: 1000ms   Memory Limit: 30720KB
Description
给你一个数n,请你列出1,2,3,4...n-1,n的全排列。
Input
输入一个数n
Output
输出相应的全排列
Sample Input
3
Sample Output
Case 1:
[1, 2, 3]
[1, 3, 2]
[2, 1, 3]
[2, 3, 1]
[3, 1, 2]
[3, 2, 1]
Hint
提交     返回