Location:
Search - bst
Search list
Description: 此程序实现了对city的BST查找.删除(根据坐标和名称都可以)-this program for the city BST search. Delete (under the name and coordinates all)
Platform: |
Size: 97280 |
Author: 郝少林 |
Hits:
Description: 二叉树的应用,数据结构的上机试验题目!实现二叉树的各项功能。-Application of binary tree data structure of the machine test subject! Realize the various functions of binary tree.
Platform: |
Size: 2048 |
Author: 辉 |
Hits:
Description: 代码实现了二叉树基本操作:实现二叉树的基本操作(包括前序、中序、后序遍历);从键盘读数,利用前面实现的基本操作,生成一棵二叉查找树;通过遍历二叉树,输出该二叉树的叶节点数;通过遍历二叉树,求二叉树的最大高度;利用队列,按层次输出二叉树各结点。
-Code to achieve the basic operation of the binary tree: binary tree to achieve the basic operations (including pre-order, in sequence, after the traversal) readings from the keyboard to use in front of the realization of the basic operation to generate a binary search tree through binary tree traversal, the output of the binary tree leaf nodes through the binary tree traversal, and the maximum tree height use of queues, according to the level of output of the binary tree nodes.
Platform: |
Size: 964608 |
Author: 李雅芳 |
Hits:
Description: 这是用C实现的二叉树的算法程序,很经典,二叉树是一种经典的数据结构-This is the binary tree using C realize the algorithm process, it is a classic is a classic binary tree data structure
Platform: |
Size: 1024 |
Author: min |
Hits:
Description: 关于二叉排序树胡数据结构程序课程设计代码-On the binary sort tree data structure procedures Hu curriculum design code
Platform: |
Size: 3072 |
Author: 浪 |
Hits:
Description: 利用c++实现BST树功能,及前叙、中续、后续遍历-Use c++ Achieve BST tree functionality, and the former Syrian, in the continued follow-up traversal
Platform: |
Size: 177152 |
Author: chinajoy |
Hits:
Description:
二叉排序树(Binary Sort Tree--BST)或者是一棵空树;或者是具有下列性质的二叉树:
⑴ 若左子树不空,则左子树上所有结点的值均小于根结点的值;若右子树不空,则右子树上所有结点的值均大于根结点的值。
⑵ 左右子树也都是二叉排序树。
(3) 中序遍历BST可得到一个关键字的有序序列
文本文件单词索引是指将文本中单词按字母顺序列出并且列出每个单词在文本中出现的次数,它也是关键字列表的一种特例,即单词为关键字并附加每个关键字在文中出现次数.文本文件单词索引常用于作者著作分析以此决定有争议作品作者身份。
实验目的与目标-err
Platform: |
Size: 1024 |
Author: katrina |
Hits:
Description: source code about BST on Java
Platform: |
Size: 1692672 |
Author: Giang |
Hits:
Description: 数据结构中的二叉搜索树,对于插入和遍历的功能,有动画显示-data struct ,binary search tree , can antimate the process of the insert and travel function of binary search tree
Platform: |
Size: 2734080 |
Author: lin |
Hits:
Description: 分析的是实例
#include<stdio.h>
#include<stdlib.h>
typedef struct BST* tree_pointer //定义数据类型
typedef struct BST{
int key
tree_pointer left
tree_pointer right
}BST
tree_pointer CreateBST(tree_pointer root, int data){ // 创建一个根
root = (tree_pointer)malloc(sizeof(BST))
root->key = data
root->left = NULL -Structure in the data analysis of the role of tree
Platform: |
Size: 72704 |
Author: 林明 |
Hits:
Description: source code for BST i.e. binary search tr-source code for BST i.e. binary search tree
Platform: |
Size: 1024 |
Author: shamrao |
Hits:
Description: 各种基本的数据结构头文件,包括链表、栈、二叉树、BST树等-mang kinds of header file for data structures
Platform: |
Size: 128000 |
Author: Jay |
Hits:
Description: 用二叉查找树对动态查找表的设计与实现,基本操作包括:构造空表、销毁表、搜索指定关键字的元素、插入新元素、删除指定关键字的元素、遍历表中所有元素。-Binary search tree with the dynamic look-up table design and implementation of basic operations including: construction empty table, destroy the table, the search element of the specified keyword, insert a new element, the element to delete the specified keywords, all the elements traverse the table.
Platform: |
Size: 2048 |
Author: 小伏 |
Hits:
Description: 我们的结课作业。二叉排序树的各种操作,以及二叉排序树的绘制。MFC框架编程,界面友好-Results of our class work. Binary Sort Tree various operations, and the binary sort tree drawing
Platform: |
Size: 119808 |
Author: 李哲 |
Hits:
Description: this the BST(binaty search tree) program in C.-this is the BST(binaty search tree) program in C.
Platform: |
Size: 1024 |
Author: Hossein |
Hits:
Description: This BST algorithm,Binary Search Tr-This is BST algorithm,Binary Search Tree
Platform: |
Size: 1024 |
Author: mori |
Hits:
Description: bst tree wrote in c-bst tree wrote in c++
Platform: |
Size: 135168 |
Author: whity19861986 |
Hits:
Description: BST-V51单片机开发板的原理图 关于BST-V51单片机开发板的详细原理图(BST-V51 microcontroller development board schematic)
Platform: |
Size: 134144 |
Author: yisuoyanyu1234
|
Hits:
Description: 使用BST树建立一个城市数据库,可实现插入、删除等操作(Building a city database using the BST tree)
Platform: |
Size: 3072 |
Author: 土土土垚
|
Hits:
Description: BST二叉排序树的插入、查询、删除、遍历 (中序遍历 从小到大)(The basic operation of the BST two forked tree.Inserting, querying, deleting, traversing two forked sort trees.)
Platform: |
Size: 92160 |
Author: 续续
|
Hits: