代码搜索:Tree
找到约 10,000 项符合「Tree」的源代码
代码结果 10,000
www.eeworm.com/read/183616/9148663
css tree.css
.treeDiv
{
font-family: verdana;
font-size: 70.5%;
font-weight: normal;
background-color: #f1f1f1;
color: Black;
overflow: auto;
margin: 0px 0px 0px 0px;
padd
www.eeworm.com/read/281575/9149437
h tree.h
#ifndef TREE_H
#define TREE_H
#include "object.h"
extern const char *tree_type;
struct tree {
struct object object;
unsigned has_full_path : 1;
};
struct tree *lookup_tree(unsigned char *sha1);
www.eeworm.com/read/380114/9162830
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/380114/9162832
h tree.h
//树的孩子兄弟表示法为存储结构的结构体Tree.h
template class Tree;
template struct TreeNode
{friend class Tree;//树类为友元
private:
TreeNode *firstChild;//第一个孩子结点指针域
TreeNode *nextSibli
www.eeworm.com/read/183296/9171278
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/183296/9171280
h tree.h
//树的孩子兄弟表示法为存储结构的结构体Tree.h
template class Tree;
template struct TreeNode
{friend class Tree;//树类为友元
private:
TreeNode *firstChild;//第一个孩子结点指针域
TreeNode *nextSibli
www.eeworm.com/read/182872/9187616
dsw tree.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/182872/9187621
opt tree.opt
www.eeworm.com/read/182872/9187623