Skip to content

Commit 075ecdf

Browse files
committed
更新算法
1 parent db53eff commit 075ecdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Algorithm/DataStructure/Tree/红黑树的演变.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@
247247
最终的插入算法:
248248

249249
```java
250-
public void put(Key key, Value val){
250+
public void put(Key key, Value val){
251251
root = put(root, key, val);
252252
root.color = BLACK;
253253
}

0 commit comments

Comments
 (0)