搜索资源列表
genBST
- 通用二叉搜索树,包含的算法有:输出广度优先遍历、前序、中序、后序遍历结果,按树的形状打印树,统计总节点数,统计叶子节点数,统计右节点数,计算树的高度,删除所有叶子节点,插入节点,查找节点,删除节点,由前序遍历结果和中序遍历结果生成树,由后序遍历结果和中序遍历结果生成树,检查该树是否平衡和完全平衡。-generic binary search tree contains the algorithm are : output breadth - first traversal, the former
Tree
- 演示二叉树的生成及一些常用操作; 包括插入节点,删除节点等。
tree
- 该程序主要通过编码来实现vb.net中树的生成,节点的添加和合并和删除
AVL树实现
- 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;
myTree
- MFC写的一个程序,实质主要是二叉排序树的显示,树的节点是学生的成绩段信息。视图左边各种操作,添加删除节点,查找统计,文件的保存和读取。右边是树的显示,包括节点移动,右键弹出相关信息等。分割窗口,滚动条,视图缩放等。-A program written in MFC, the real key is the display of binary sort tree, the tree node is the information section of student achievement. V
RBTreeAndBinary_Search_Tree
- 实现红黑树、二叉搜索树相关算法:插入(红黑树涉及树的调整:左旋、右旋等),删除,搜索(指定Key值节点)。 另外,红黑树实现计算树黑高的算法。 -To achieve red-black tree, binary search tree related algorithms: insertion (red-black tree involves the adjustment of the tree: L, D, etc.), delete, search (Key value of t
TreeCtrl
- VC++编写的树视控件的动态添加、编辑、删除节点的实现。源代码完全开放,和适合于初学者深入学习树视控件!-VC++ written in the tree depending on the dynamics of the control to add, edit, delete the node implementation. Completely open source, and suitable for beginners to learn in depth the tree as the
erchashujiqixiangguancaozuo
- 二叉树及其相如按操作C程序代码 凹入表示法输出 二叉树的创建 结点内容用字符串表示 二叉树的节点数 叶子数 层次遍历 前序 中序 后序遍历 查找结点 删除结点 删除结点及其子树 再用凹入表示法输出-Binary Tree and its operation, such as by indentation C code representation of the output tree to create the content node tree with the string that lea
TreeViewListView
- 描述了treeview 和listview的基本功能(添加新节点,展开树,以及删除节点等操作),同时点击节点时可以在listview中显示相关信息-Treeview and listview described the basic functions (add a new node, expand the tree, and delete nodes and other operations), and click the node can display information in the
rebblacktree
- 红黑树的实现,如何增加删除节点等,以及代码测试。-Red-black tree implementation, how to increase the delete node, as well as code testing.
Tree
- 系统故障树模拟...利用MFC模拟系统故障树的建立、插入节点、删除节点、更改关系以及矩阵法求最小路集等功能-System fault tree simulation ... simulation system using MFC Fault Tree Construction, insert node, delete node, change the relationship and find minimal path set matrix method and other functions
VCPPtreekjsrc
- VC++从树控件中删除项目,删除节点或删除节点中的项目,一个树形菜单的应用源码,树控菜单应用广泛 ,在窗体中十分常见。-VC++ deleting items from tree control, delete node or delete the node project, a tree menu application code, the tree control menu applications, in the form are very common.
Btree
- 可以通过按键演示二叉树的创建、查找节点、删除节点、演示树高等-Through the creation of the key demo binary tree to find nodes, delete nodes, presentation tree higher
treeOption
- 把左边的树动态的构建到右边的树上,右边的树的添加删除不会影响左边的树,但是左右两边树的节点属性相同。-To the left of the tree dynamically builds up to the right side of the tree, the tree to add delete will not affect the tree on the left and right sides of the nodes of the tree, but the same attribu
Bavla
- 基本的avl树,实现构造插入入和删除节点的功能可直接使用。 -Basic avl tree structure function can be used directly insert into and delete nodes.
AVLTree
- 使用C#写的AVL树小代码,含工程文件,具有添加和删除节点的函数-A small AVL tree code written in C#, containing the project file, add and remove nodes function
xx
- 二叉树对顺序表的排序,插入节点,删除节点-Binary tree sort sequence table, insert nodes, delete nodes, etc.
shxilianbiao
- Delphi双向循环的链表应用实例源代码,演示添加节点、插入节点、删除节点、删除尾节点以及创建链表节点数据,操作成功后,点击刷新,可看到左侧树结构中已存在添加的数据-Linked list of two-way loop in Delphi application source code examples, demo add nodes to insert nodes, delete nodes, delete tail node as well as create a linked list
binary-tree
- 二叉树的建立以和先序、中序、后序遍历以及层次遍历,还可以查找并删除节点等-the basic function of binary tree
Tree
- 二叉树的实现例如:遍历,插入删除,更新,插入节点等操作(The implementation of two forked trees, such as traversing, inserting delete, updating, inserting nodes, and so on)