Skip to content

Commit e269d74

Browse files
authored
Update README.md
1 parent c0367d6 commit e269d74

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
# 二叉树数据结构可视化(Visualized-two-three-sort-tree)
2-
数据结构课程设计,实现能够支持动态插入、查找、删除节点操作的可视化2-3排序树(Implement a visualized 2-3 sort tree which supports node insertion, search and deletion dynamically.)
1+
# 二叉树数据结构可视化(Visualized-two-three-tree)
2+
数据结构课程设计,实现能够支持动态插入、查找、删除节点操作的可视化2-3树(Implement a visualized 2-3 tree which supports node insertion, search and deletion dynamically.)
33
## 题目要求(Problem description)
44
**试从空树出发构造一棵深度至少为 3(不包括失误结点)的 3 阶 B-树(又称 2-3 树),
55
并可以随时进行查找、插入、删除等操作。
66
要求:能够把构造和删除过程中的 B-树随时显示输出来,能给出查找是否成功的有关信
77
息。**
8+
## 数据结构与算法(DS & Algorithms)
9+
**实验中实现一棵2-3树的基本数据结构,和动态插入、删除与查找节点算法(2-3树满足二叉排序树的特性,并且对于为2节点的根节点,左子树的所有节点中的元素小于根节点元素,右子树的所有节点中的元素大于根节点元素,对于为3节点的根节点,根节点的左边元素小于根节点右边元素,左子树的所有节点中的元素小于根节点的左边元素和右边元素,中间子树所有节点中的元素大于根节点左边元素但是小于根节点右边元素,右子树所有节点中的元素大于根节点的右边元素)
10+
(This project implements a basic 2-3 tree structure and dynamic insertion, deletion and search algorithm for the tree. Pls search "What is a 2-3 tree?" with any search engine if u dont know what a 2-3 tree is.)**
811
## 操作说明(Manual)
912
**通过左上方控件添加、删除、查找节点,在右侧画布窗口可视化显示树。使用左键按住节点可以拖动节点,右键按住画布可以拖动画布,右键单击节点可以标记/取消标记节点,使用样式设置栏可以设置树绘制的样式。
1013
(Insert/Delete/Search for Node with respectives controls. Tree will be drawn in the canvas window. Hold mouse left key to drag a node, hold mouse right key to drag the canvas, press mouse right key on any node to mark/unmark it, use controls under Misc tab to set styles for visualization.)**

0 commit comments

Comments
 (0)