This commit is contained in:
krahets
2023-08-19 22:07:27 +08:00
parent 71c7786f51
commit 2e27ad1680
99 changed files with 283 additions and 283 deletions
+3 -3
View File
@@ -2,7 +2,7 @@
comments: true
---
# 13.2.   全排列问题
# 13.2   全排列问题
全排列问题是回溯算法的一个典型应用。它的定义是在给定一个集合(如一个数组或字符串)的情况下,找出这个集合中元素的所有可能的排列。
@@ -20,7 +20,7 @@ comments: true
</div>
## 13.2.1. &nbsp; 无相等元素的情况
## 13.2.1 &nbsp; 无相等元素的情况
!!! question
@@ -473,7 +473,7 @@ comments: true
}
```
## 13.2.2. &nbsp; 考虑相等元素的情况
## 13.2.2 &nbsp; 考虑相等元素的情况
!!! question