代码搜索:BinaryTree
找到约 1,360 项符合「BinaryTree」的源代码
代码结果 1,360
www.eeworm.com/read/450886/7475248
c 10-10.c
#include < stdio.h>
typedef int Type;
typedef int T;
typedef struct BiTNode {
Type data;
struct BiTNode *lchild,*rchild;
}binarytree;
typedef struct Huffmannode{
binarytree tr
www.eeworm.com/read/448199/7538330
c 10-10.c
#include < stdio.h>
typedef int Type;
typedef int T;
typedef struct BiTNode {
Type data;
struct BiTNode *lchild,*rchild;
}binarytree;
typedef struct Huffmannode{
binarytree tr
www.eeworm.com/read/441668/7667281
cpp p170.cpp
#define NULL 0
#define MAX(x1,x2) (x1>x2?x1:x2)
#include
template class BinaryTree;
template class BinTreeNode{
friend class BinaryTree;
pub
www.eeworm.com/read/441668/7667363
cpp page170.cpp
#define NULL 0
#define Max(x1,x2) (x1>x2?x1:x2)
#include
template class BinaryTree;
template class BinTreeNode{
friend class BinaryTree;
pub
www.eeworm.com/read/441668/7667372
h bintree.h
#define NULL 0
#define Max(x1,x2) (x1>x2?x1:x2)
#include
template class BinaryTree;
template class BinTreeNode{
friend class BinaryTree;
pub
www.eeworm.com/read/435473/7791874
cpp 1and21.cpp
#include
#include "BinaryTree.h"
using namespace std;
BinaryTreeNode * creat()
{
int e;
cin >>e;
if(e==0)
{
return NULL;
}
return new BinaryTreeNode (e);
www.eeworm.com/read/434704/7847230
c 12_6.c
/* ======================================== */
/* 程式实例: 12_6.cpp */
/* 二元树类别实作 */
/* ======================================== */
#include
www.eeworm.com/read/299227/7874346
cpp btree2.cpp
//二叉树类的实现btree2.cpp
//根据字符数组a的二叉树广义表建立对应的二叉树存储结构
template
void BinaryTree::CreateBTree(char *a)
{BTreeNode *s[80];//s数组作为存储二叉树中根结点指针的栈
int top=-1; //top作为s栈的栈顶指针
root=NULL;
www.eeworm.com/read/298539/7951719
cpp p170.cpp
#define NULL 0
#define MAX(x1,x2) (x1>x2?x1:x2)
#include
template class BinaryTree;
template class BinTreeNode{
friend class BinaryTree;
pub
www.eeworm.com/read/298538/7951807
cpp page170.cpp
#define NULL 0
#define Max(x1,x2) (x1>x2?x1:x2)
#include
template class BinaryTree;
template class BinTreeNode{
friend class BinaryTree;
pub