fix: remove remaining Java implementation sections
- Remove all "### Java 实现" sections from all markdown files - Clean up remaining Java code blocks and references - Ensure only Go code remains in all documentation - Complete the Java to Go migration for all 22 files
This commit is contained in:
@@ -137,10 +137,6 @@ func main() {
|
||||
}
|
||||
```
|
||||
|
||||
### Java 实现(回溯法)
|
||||
|
||||
|
||||
### Go 实现(动态规划)
|
||||
|
||||
```go
|
||||
func generateParenthesisDP(n int) []string {
|
||||
@@ -166,12 +162,6 @@ func generateParenthesisDP(n int) []string {
|
||||
}
|
||||
```
|
||||
|
||||
### Java 实现(动态规划)
|
||||
|
||||
|
||||
## 复杂度分析
|
||||
|
||||
### 回溯法
|
||||
|
||||
- **时间复杂度:** O(4^n / √n)
|
||||
- 在回溯树中,每个节点最多有 2 个分支
|
||||
|
||||
Reference in New Issue
Block a user