E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
BiTree
java实现树
package com.tree.
bitree
; public class BinTree { static abstract class Visitor{ void
gpogpogpo
·
2011-04-17 20:00
java
HDU 3791
代码如下://方法一:#include #include using namespace std;struct d{ char data; int left,right;}
bitree
[1024
ACM乐园
·
2011-04-04 19:00
HDOJ3791 二叉搜索树
代码:#include#include#includetypedefstructnode{//树节点数据结构定义;intdata;structnode*left,*right;}*
BiTree
,BTNode
xiajun07061225
·
2011-03-08 20:00
数据结构
struct
null
insert
二叉树的相关递归算法
#includeusingnamespacestd;typedefstructBiNode{chardata;structBiNode*lchild,*rchild;}BiTNode,*
BiTree
;voidcreateTree
rongyongfeikai2
·
2011-01-27 11:00
c
算法
struct
null
System
链式二叉树的创建及遍历
#includeusingnamespacestd;typedefstructnode{chardata;structnode*lchild,*rchild;}tree,
bitree
;voidcreat
a330416020
·
2011-01-02 16:00
struct
tree
构造次优查找树
intdata;intLTag,RTag;//标志位,=1表示lchild或rchild指示结点的左右孩子,=0表示指示结点的前驱后继structBiTNode*lchild,*rchild;}BiTNode,*
BiTree
albon_arith
·
2010-12-01 15:00
数据结构与算法
构造次优查找树
intdata;intLTag,RTag;//标志位,=1表示lchild或rchild指示结点的左右孩子,=0表示指示结点的前驱后继structBiTNode*lchild,*rchild;}BiTNode,*
BiTree
hustspy1990
·
2010-12-01 15:00
struct
存储
include
二叉树的链式存储结构 C++代码实现
二叉链表的定义*/typedefstructBiTNode{ chardata;structBiTNode*lchild,*rchild;}BiTNode;typedefBiTNode*
BiTree
hackerain
·
2010-11-18 11:00
C++
算法
struct
存储
BT
二叉树用顺序表实现 C++代码实现
/*二叉树用顺序表实现*/ #includeusingnamespacestd; /*完全二叉树顺序表的定义*/#defineMAX_
BITREE
_SIZE100typedefintSqBiTree[MAX_
BITREE
_SIZE
hackerain
·
2010-11-17 22:00
C++
测试
二叉树的创建、先中后序遍历及判断是否为满二叉树(递归与非递归算法)
#include<stdio.h> #include<stdlib.h> //#include<math.h> typedef struct node *
BiTree
流星划过的天空
·
2010-11-11 16:00
C++
c
算法
C#
F#
二叉树的创建、先中后序遍历及判断是否为满二叉树(递归与非递归算法)
阅读更多//(递归的)#include"stdafx.h"#include#include//#includetypedefstructnode*
BiTree
;structnode{charch;BiTreeLchild
流星划过的天空
·
2010-11-11 16:00
算法
C
C++
C#
F#
二叉排序树
,最重要的是上课的时候听老师讲课后就能做出来#include#includetypedefstructbitnode{intdata;bitnode*lchild,*rchild;}bitnode,*
bitree
bg2bkk
·
2010-08-22 15:00
java语言实现的二叉树的各种操作(包括递归与非递归遍历二叉树,求二叉树的高度,节点总数,叶子节点等)
/*java语言实现的二叉树的各种操作(包括递归与非递归遍历二叉树,求二叉树的高度,节点总数,叶子节点等)*/
BiTree
.javaimportjava.util.Stack;publicclassBiTree
zxingchao2009
·
2010-08-12 20:00
二叉树中序遍历非递归算法
二叉树结点的定义 typedef struct BiTreeNode{ ElemType value; BiTreeNode *lChild,*rChild; }BiTreeNode,*
BiTree
jaychang
·
2010-06-29 23:00
算法
二叉树的创建
; //二叉树定义 typedef struct BiTreeNode{ int value; BiTreeNode *lChild,*rChild; }BiTreeNode,*
BiTree
jaychang
·
2010-06-29 23:00
二叉树
二叉排序树的递归与非递归查找
//定义二叉树结点 typedef struct BiTreeNode{ int value; BiTreeNode *lChild,*rChild; }BiTreeNode,*
BiTree
jaychang
·
2010-06-29 22:00
二叉排序树
二叉树遍历非递归实现
先序遍历[cpp] viewplaincopyint preorder_traverse(
bitree
bt, int (*visit)(elemtype e)) { sqstack
gentleliu
·
2010-03-24 11:00
数据结构
算法
二叉树
二叉树前序、中序、后序三种遍历的非递归算法
教科书标准算法1.先序遍历非递归算法voidPreOrderUnrec(
Bitree
*t){ Stacks; StackInit(s);
Bitree
*p=t; while(p!
The Way of C++
·
2010-03-18 12:00
二叉树的操作(建树,先序遍历,交换左右子树,销毁
includeusingnamespacestd;typedefstructBiTNode{ chardata; structBiTNode*lchild,*rchild;//}BiTNode,*
BiTree
hqd_acm
·
2010-02-19 14:00
struct
null
关于二叉树遍历的算法
includetypedefcharDataType;typedefstructNode{DataTypedata;structNode*LChild;structNode*RChild;}BiTNode,*
BiTree
meiyuli
·
2010-01-04 08:00
c
算法
struct
null
include
BT
非递归遍历二叉树的四种策略-先序、中序、后序和层序
Status PreOrderTraverse(
BiTree
T, Status (
wapysun
·
2009-11-14 21:00
二叉树
非递归遍历二叉树的四种策略-先序、中序、后序和层序
Status PreOrderTraverse(
BiTree
T, Status (
Poechant
·
2009-11-14 21:00
二叉树
java二叉树
Node leftNode; Node rightNode; Node(){ } } package tree; public class
BiTree
codespace
·
2009-11-02 17:00
java
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
非递归遍历二叉树
typedef struct binode{ char data; struct binode *lchild; struct binode *rchild; }BiNode,*
BiTree
Heart.X.Raid
·
2009-10-31 17:00
apache
算法
面试
J#
Mina
二叉树的创建及遍历(递归代码)
struct _BiTNode { char data; struct _BiTNode *lchild; struct _BiTNode *rchild;} BiTNode, *
BiTree
键盘上的舞者
·
2009-09-24 22:00
【课本】二叉树前序、中序、后序三种遍历的非递归算法
1.先序遍历非递归算法voidPreOrderUnrec(
Bitree
*t){Stacks;StackInit(s);
Bitree
*p=t;while(p!=NULL||!
sky04
·
2009-09-02 10:00
算法
struct
null
BT
前序遍历二叉树,中序遍历二叉树,后序遍历二叉树 c#实现
using System.Collections.Generic; using System.Collections; class
BiTree
bbls
·
2009-07-08 23:00
C++
c
C#
树结构
public class
BiTree
{ class Node{ private int data; private Node left; private Node right
apache08
·
2009-06-11 08:00
树
根据先序遍历和中序遍历创建二叉树
根据先序遍历和中序遍历创建二叉树 1 #include 2 #include 3 using namespace std; 4 5 class
BiTree
6 { 7 private
God bless U!
·
2009-02-10 22:00
二叉树前序、中序、后序三种遍历的非递归算法
1.先序遍历非递归算法voidPreOrderUnrec(
Bitree
*t){ Stacks; StackInit(s);
Bitree
*p=t; while(p!=NULL||!
啥也别说了
·
2008-11-22 00:00
二叉树的操作
#include#includetypedefstructBiNode{chardata;structBiNode*lchild,*rchild;}BiNode,*
BiTree
;voidCreateBiTree
hello_world
·
2008-09-11 20:50
c
职场
二叉树
休闲
如何判断是不是完全二叉树
usingnamespacestd; structSHAGUO { chardata; structSHAGUO*lchild,*rchild; }; typedefSHAGUO*
bitree
inter999
·
2008-07-01 14:00
二叉树(含有duplicates字段来实现懒惰删除,还有完全删除节点)
#include #include #include #include typedef struct
BiTree
...{ int value; int duplicates; struct
ztj111
·
2007-12-21 10:00
struct
null
include
Duplicates
C语言版--二叉树
include"iostream.h"typedefcharTElemType;typedefstructBiTNode{ TElemTypedata; structBiTNode*lchild,*rchild;}BiTNode,*
BiTree
编程小区
·
2007-06-09 12:00
二叉树的遍历
#include#defineMAXSIZE100typedefstructBiTNode{ chardata; structBiTNode*lchild,*rchild;}BiTNode,*
BiTree
qiance
·
2007-05-06 22:00
先序非递归遍历
先序非递归遍历//先序非递归遍历voidpreorder(
bitree
*BST){
bitree
*p,*s[100]; inttop=0; p=BST; while((p!
★Snowhill ★
·
2006-12-03 09:00
Binary Tree
BinaryTree/*DATE:2006-12-02BY:snowhill*/#include"iostream.h"/*definition*/structbitree{ intdata;
bitree
★Snowhill ★
·
2006-12-02 19:00
课程设计4--二叉树遍历
//#include"stdafx.h"#include"
BiTree
.h"void main(intargc,char*argv[]){ boolisContinue=true;//标志是否继续对另一二叉树进行遍历
sayigood
·
2006-10-11 22:00
二叉树先序、中序、后序三种遍历的非递归算法
1.先序遍历非递归算法 #define maxsize 100 typedef struct {
Bitree
Elem[maxsize]; int top; }SqStack; void PreOrderUnrec
ihuashao
·
2006-06-09 13:00
算法
二叉树的各种实现
defineSIZE100usingnamespacestd;typedefstructBiTNode//定义二叉树节点结构{chardata;//数据域structBiTNode*lchild,*rchild;//左右孩子指针域}BiTNode,*
BiTree
lance_123
·
2005-12-01 11:00
c
struct
null
include
二叉树中递归算法的两个应用——数(非)叶子结点的数目和判断是否是排序二叉树
char datatype;typedef struct BiTNode{ datatype data; struct BiTNode * LChild , * RChild ;} BiTNode , *
BiTree
yzd
·
2005-03-05 16:00
二叉树
二叉树中递归算法的两个应用——数(非)叶子结点的数目和判断是否是排序二叉树
/typedefchardatatype;typedefstructBiTNode{ datatypedata; structBiTNode*LChild,*RChild;}BiTNode,*
BiTree
wadefelix
·
2005-03-05 16:00
算法
struct
null
BT
上一页
10
11
12
13
14
15
16
17
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他