Files
2020-08-07 17:06:53 +08:00

31 lines
505 B
Markdown
Executable File
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# [46. Permutations](https://leetcode.com/problems/permutations/)
## 题目
Given a collection of **distinct** integers, return all possible permutations.
**Example:**
Input: [1,2,3]
Output:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
## 题目大意
给定一个没有重复数字的序列,返回其所有可能的全排列。
## 解题思路
- 求出一个数组的排列组合中的所有排列,用 DFS 深搜即可。