842. 排列数字
| 2023-1-24
0  |  阅读时长 0 分钟
From
AcWing
Status
AC
Date
Jan 22, 2023
Tags
dfs
递归
Difficulty
简单

描述

给定一个整数 ,将数字 排成一排,将会有很多种排列方法。
现在,请你按照字典序将所有的排列方法输出。

输入格式

共一行,包含一个整数

输出格式

按字典序输出所有排列方案,每个方案占一行。

数据范围

输入样例:

输出样例:

思路

notion image
notion image
notion image
notion image

代码

Loading...
目录