Unverified Commit c92f11c2 authored by ksyx's avatar ksyx Committed by GitHub
Browse files

fix: title level

parent 338b0e32
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,12 +30,12 @@ Begin
end;
```

#### 优点
### 优点

1. 空间开销小,每个深度下实际上是一个深度优先搜索,不过深度有限制,而 DFS 的空间消耗小是众所周知的;
2. 利于深度剪枝。

#### 缺点
### 缺点

重复搜索:回溯过程中每次 depth 变大都要再次从头搜索。