Skip to content

Commit d6f1624

Browse files
committed
fix
1 parent f886500 commit d6f1624

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Algorithm_full_features/BTree-simpleImplementation

Algorithm_full_features/BTree-simpleImplementation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ gcc btree.cpp -o btree.out
1515

1616
3.根节点要么为空(整颗树为空),要么至少要有两颗子树
1717

18-
4.非根节点的叶子节点,至少要有 floor(m/2) 颗子树
18+
4.非根节点的非叶子节点,至少要有 floor(m/2) 颗子树
1919

2020
5.每个非叶子节点中包含信息为:(n, A0, K1, A1, K2, A2, ...., Kn, An),其中
2121

0 commit comments

Comments
 (0)