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:
@@ -151,10 +151,6 @@ func main() {
|
||||
}
|
||||
```
|
||||
|
||||
### Java 实现(回溯法)
|
||||
|
||||
|
||||
### Go 实现(队列迭代法)
|
||||
|
||||
```go
|
||||
func letterCombinationsIterative(digits string) []string {
|
||||
@@ -195,12 +191,6 @@ func letterCombinationsIterative(digits string) []string {
|
||||
}
|
||||
```
|
||||
|
||||
### Java 实现(队列迭代法)
|
||||
|
||||
|
||||
## 复杂度分析
|
||||
|
||||
### 回溯法
|
||||
|
||||
- **时间复杂度:** O(3^m × 4^n)
|
||||
- 其中 m 是对应 3 个字母的数字个数(2, 3, 4, 5, 6, 8)
|
||||
|
||||
Reference in New Issue
Block a user