代码搜索:Tree
找到约 10,000 项符合「Tree」的源代码
代码结果 10,000
www.eeworm.com/read/199264/7874390
exe tree.exe
www.eeworm.com/read/199264/7874393
obj tree.obj
www.eeworm.com/read/199264/7874397
dsk tree.dsk
www.eeworm.com/read/299227/7874446
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/299227/7874449
h tree.h
//树的孩子兄弟表示法为存储结构的结构体Tree.h
template class Tree;
template struct TreeNode
{friend class Tree;//树类为友元
private:
TreeNode *firstChild;//第一个孩子结点指针域
TreeNode *nextSibli
www.eeworm.com/read/299210/7879882
txt tree.txt
#include
#include
#include
#ifndef NULL
#define NULL 0
#endif
#define MAXRULEROW 5000
#define NUM 10
typedef struct _JL_Node
{
int nIsLeaf;
in
www.eeworm.com/read/199078/7889547
jpg tree.jpg
www.eeworm.com/read/398937/7907989
cpp tree.cpp
//--------------------------------------------------
// Desc: 3D tree
// Author: artsylee/2007.2.25
//--------------------------------------------------
#include "Tree.h"
CTree::CTree()
{
www.eeworm.com/read/398937/7907993
h tree.h
//--------------------------------------------------
// Desc: 3D tree
// Date: 2007.2.25 /update
// Author: artsylee
//
// Copyright (C) 2007 artsylee
//
//---------------------------------
www.eeworm.com/read/433502/7925579
dsw tree.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################