CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - Binary Tree
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
Network Marketing
Management
E-commerce
Business guide
Business plan
Successful incentive
Human Resources
Report papers
Marketing materials
Consulting and training
Website
Software Engineering
File Format
Technology Management
Industry research
Program doc
Other
Search - Binary Tree - List
[
Documents
]
NTDETECT
DL : 0
C++二叉树算法-C Binary Tree Algorithm
Date
: 2025-12-18
Size
: 58kb
User
:
ABC
[
Documents
]
十进制数转换为八进制数
DL : 0
二叉树的生成与遍历-binary tree generation and traversal
Date
: 2025-12-18
Size
: 2kb
User
:
郭强
[
Documents
]
echashu
DL : 0
平衡二叉树操作的演示-balanced binary tree operation of the Demonstration
Date
: 2025-12-18
Size
: 39kb
User
:
[
Documents
]
haffmantree
DL : 0
哈夫曼二叉树的原代码-Huffman binary tree of the original code
Date
: 2025-12-18
Size
: 6kb
User
:
王伟
[
Documents
]
二叉树的集合操作
DL : 0
二叉树的集合操作附代码-binary tree assembly operation code :
Date
: 2025-12-18
Size
: 1kb
User
:
火影
[
Documents
]
属性均值聚类二叉树及其在人脸识别中的应用
DL : 0
采用二叉树数据结构,属性均值聚类算法在图象识别中的应用。-using a binary tree data structure, attributes means clustering algorithm in image recognition applications.
Date
: 2025-12-18
Size
: 105kb
User
:
石支柱
[
Documents
]
DATALECTURE
DL : 0
数据结构 授课教案 本章主要介绍以下内容: 1.数据结构研究的主要内容 2.数据结构中涉及的基本概念 3.算法的概念、描述方法以及评价标准 栈和队列 1.树的定义和存储结构 2.二叉树的定义、性质、存储结构 3.二叉树的遍历、线索算法 4.树和二叉树的转换 5.哈夫曼树及其应用 -data structure templates teach this chapter introduces the following : 1. Research data structure of the main contents of two. data structure of three basic concepts. Algorithm concept , and description of the evaluation criteria stack and a queue. Tree definitions and storage structure 2. Binary Tree definition, nature, Storage Structure 3. binary tree traversal, Algorithm four clues. trees and converting five of the binary tree. Huffman tree and its application
Date
: 2025-12-18
Size
: 1.24mb
User
:
wu
[
Documents
]
minghuan
DL : 0
用汇编实现了二叉树 前序遍历输入 中序,后序输出 功能简单 -compiled using the binary tree before realizing preorder importation of the order, after a simple sequence output function
Date
: 2025-12-18
Size
: 2kb
User
:
jinminghuan
[
Documents
]
123456
DL : 0
一份数据结构的课程设计完整代码,说明,都十分齐全,希望对大家有用啊。题目是二叉树的遍历演示-A data structure of the curriculum design integrity of the code, description, are very complete, in the hope that everyone ah useful. Binary Tree Traversal titled demo
Date
: 2025-12-18
Size
: 262kb
User
:
water
[
Documents
]
Binary-Tree
DL : 0
数据结构 1、算法思路: 在此二叉树操作中,主要采用链式存储结构,由于遍历二叉树基本操作是访问结点,则不论按哪一种次序进行遍历,对含有n个结点的二叉树,其时间复杂度均为O(n);空间复杂度为二叉树的高度。 -Data Structure 1, Algorithm idea: In this binary tree operation, mainly the structure of chain stores, due to the basic operation is a binary tree traversal to visit nodes, regardless of by what kind of order traversal, containing n- node of the tree, its time complexity are O (n) space complexity for the tree height.
Date
: 2025-12-18
Size
: 29kb
User
:
Anson
[
Documents
]
Huffman-tree
DL : 0
数据结构 1、算法思路: 哈夫曼树算法:a)根据给定的n个权值{W1,W2… ,Wn }构成 n棵二叉树的集合F={T1,T2…,T n },其中每棵二叉树T中只有一个带权为W i的根结点,其左右子树均空;b)在F中选取两棵根结点的权值最小的树作为左右子树构造一棵新的二叉树,且置新的二叉树的根结点的权值为其左、右子树上结点的权值之和;c)F中删除这两棵树,同时将新得到的二叉树加入F中; d)重复b)和c),直到F只含一棵树为止。 -Data Structure 1, Algorithm idea: Huffman tree algorithm: a) in accordance with a given value of n of the right (W1, W2 ..., Wn) constitute a set of n binary tree trees F = (T1, T2 ..., T n) , which for each binary tree T with only one right for the W i of the root node, its about subtree are empty b) in the F 2 in the root node of the right to select the smallest value of the tree as a subtree structure around a new binary tree, binary tree and the new home of the root node of the right value for the left and right sub-tree nodes and the right value c) F in the deletion of the two trees, at the same time obtained by adding a new binary tree F in d) repeat b) and c), until a tree F containing only so far.
Date
: 2025-12-18
Size
: 28kb
User
:
Anson
[
Documents
]
paxieeuew
DL : 0
1.创建二叉树 2.输出二叉树 4.二叉树的前中后三序遍历 5.删除特定关键字结点 0.退出程序-1. Create a binary tree 2. Output binary tree 4. Bintree three after the first traversal of 5. Delete specific keyword node 0. Exit procedures
Date
: 2025-12-18
Size
: 1kb
User
:
张清
[
Documents
]
tree
DL : 0
定义二叉树的结点类型,实现其最基本的操作-The definition of binary tree node type, to achieve its most basic operations
Date
: 2025-12-18
Size
: 1kb
User
:
候青
[
Documents
]
binarytree
DL : 0
已知二叉树的任意两种遍历序列,可以得到树的第三种遍历序列。如已知先序和后序序列,输出中序序列。-Known binary tree traversal of any two sequences, can be the third tree traversal sequence. If known after the first sequence and the sequence sequence sequence sequence output.
Date
: 2025-12-18
Size
: 61kb
User
:
林伟伟
[
Documents
]
Depth-firsttraversalalgorithmforbinarytree
DL : 0
用c语言编程实现二叉树的深度算法遍历二叉树-Binary tree with c language programming to realize the depth of binary tree traversal algorithm
Date
: 2025-12-18
Size
: 1kb
User
:
翟志伟
[
Documents
]
BINARY-TREE
DL : 0
this is a binary tree, is made in visual studio c + +, I hope you dear users served.
Date
: 2025-12-18
Size
: 2.3mb
User
:
gianjo
[
Documents
]
shu-he-er-cha-shu
DL : 0
树和二叉树1.二叉树的二叉链表存储结构 2.二叉树的常见算法 -A tree and binary tree binary tree binary linked list storage structure binary tree of the common algorithm
Date
: 2025-12-18
Size
: 2kb
User
:
陈燕
[
Documents
]
13597362-C-program-for-Binary-Search-Tree-Travers
DL : 0
code binary search tr-code binary search tree
Date
: 2025-12-18
Size
: 176kb
User
:
ricardoszf
[
Documents
]
file-binary-tree-run
DL : 0
file binary tree run.rar
Date
: 2025-12-18
Size
: 1kb
User
:
Farugh
[
Documents
]
Binary serach
DL : 0
binary search test it
Date
: 2025-12-18
Size
: 9.08mb
User
:
neo123456789
«
1
2
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.