Merge pull request #109 from ChuanleiGuo/patch-1

改正了笔误,二叉查找树*前*序遍历有序改为*中*序遍历有序
This commit is contained in:
CyC2018 2018-03-28 16:54:47 +08:00 committed by GitHub
commit 90bf31d96d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -975,7 +975,7 @@ public class BinarySearchST<Key extends Comparable<Key>, Value> {
<div align="center"> <img src="../pics//1c012d74-6b9d-4f25-a016-7ad4f1f1521898780376.png" width="400"/> </div><br>
BST 有一个重要性质,就是它的序遍历结果递增排序。
BST 有一个重要性质,就是它的序遍历结果递增排序。
<div align="center"> <img src="../pics//5c0bb285-b917-446b-84a2-9810ee41521898714517.png" width="300"/> </div><br>