代码搜索:Tree
找到约 10,000 项符合「Tree」的源代码
代码结果 10,000
www.eeworm.com/read/311980/13620595
opt tree.opt
www.eeworm.com/read/311980/13620596
ncb tree.ncb
www.eeworm.com/read/311980/13620597
dsp tree.dsp
# Microsoft Developer Studio Project File - Name="tree" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/311980/13620598
plg tree.plg
Build Log
--------------------Configuration: tree - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\水果糖\LOCA
www.eeworm.com/read/311069/13637703
ico tree.ico
www.eeworm.com/read/310520/13649857
c tree.c
#include
#include
struct tree
{
char info;
struct tree *left;
struct tree *right;
};
struct tree *root; /*树的第一个结点*/
struct tree *construct(struct tree *root, stru
www.eeworm.com/read/310332/13653349
h tree.h
www.eeworm.com/read/310332/13653401
c tree.c
www.eeworm.com/read/310200/13655868
cpp tree.cpp
//树类的实现Tree.cpp
template
void Tree::DeleteSubTree(TreeNode *&t)
{if(t==NULL) return;
TreeNode *q=t->firstChild,*p;
while(q!=NULL)
{p=q->nextSibling;
DeleteSubTree(q);
www.eeworm.com/read/310200/13655869
h tree.h
//树的孩子兄弟表示法为存储结构的结构体Tree.h
template class Tree;
template struct TreeNode
{friend class Tree;//树类为友元
private:
TreeNode *firstChild;//第一个孩子结点指针域
TreeNode *nextSibli