搜索资源列表
shujujiegou-erchashu
- 叉排序树与平衡二叉排序树基本操作的实现 用二叉链表作存储结构 (1)以回车( \\n )为输入结束标志,输入数列L,生成二叉排序树T; (2)对二叉排序树T作中序遍历,输出结果; (3)计算二叉排序树T的平均查找长度,输出结果; (4)输入元素x,查找二叉排序树T,若存在含x的结点,则删除该结 点,并作中序遍历(执行操作2);否则输出信息“无结点x”; (5)判断二叉排序树T是否为平衡二叉树,输出信息“OK!”/“NO!”;-fork trees and
ch06
- 我們的注意焦點要轉到搜尋樹(search tree)了,要深度討論兩種標準的樹結構(tree structure),就是本章所要說明的二元搜尋樹(binary search tree)以及下一章所要討論的 AVL 平衡樹(AVL tree)。這兩種樹其資料都依序排列的,它們之間的差別只在於 AVL 是一種平衡樹,而二元搜尋樹卻不是。-We want to focus the attention of the search tree (search tree), and want to discu
Advanced_Data_Structures.pptx
- slides on advance data structures, binary trees
BinarySearchTree
- A binary search tree is a binary tree that is either empty or in which each node contains a key that satisfies the following conditions: 1) All keys (if any) in the left subtree of the root precede (are less than or equal to) the key of the
SE
- the file contains various issues regarding computer science such as linked lists,binary search trees etc-the file contains various issues regarding computer science such as linked lists,binary search trees etc..
Tree
- 二叉树的相关功能,如遍历,求深度宽度繁茂度等-Functions of Binary Trees
zuoye
- 二叉树遍历,包括前中后序递归遍历和计算椰子树和节点数-Binary tree traversal, including former in after sequence recursively traverse and calculation of coconut trees and the number of nodes
548945184
- 数据结构的课设。包括哈希表、二叉树以及各种排序算法。应有尽有-Class data structure set. Including hash tables, binary trees, and various sorting algorithms. Everything
Hashing
- We’ll discuss the hash table ADT which supports only a subset of the operations allowed by binary search trees. The implementation of hash tables is called hashing. Hashing is a technique used for performing insertions, deletions and finds in con
Trees
- Preliminaries What is Tree? Implementation of Trees using C++ Tree traversals and applications Binary Trees Binary Search Trees Structure and operations Analysis AVL Trees
TreePquestions
- This is about Data Structures Trees Binary
C_cplusplus_refresher_codes
- These are some codes that I ve kept around for refreshing myself with C/C++ dev. They are useful, but in no way shape or form organized. There are examples of recursion, binary trees, many STL types, and several search programs. Rudimentary but usefu
Binary-Tree
- 关于二叉树先、中、后三种遍历的算法,以及对两棵二叉树进行判等的算法用c语言加以实现-About binary tree first, middle and last three traversal algorithms, and sentenced to two trees and other binary tree algorithm to be implemented in c language
Shujujiegou-C
- 数据结构C语言版,章节PPT,绪论、栈与队列、线性链表、树和二叉树-Data structure C language edition, chapter PPT, introduction, stacks and queues, linear lists, trees and binary trees
binary-search-trees-java-demo-master
- Binary Search Tree Java based demonstration on Canvas using AJAX for communication between browser and server