代码搜索:Tree
找到约 10,000 项符合「Tree」的源代码
代码结果 10,000
www.eeworm.com/read/325456/13205677
cs tree.cs
using System;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.U
www.eeworm.com/read/325395/13208933
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/138774/13213819
gif tree.gif
www.eeworm.com/read/240468/13217721
java tree.java
/*
Copyright (c) 2002 Compaq Computer Corporation
SOFTWARE RELEASE
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated doc
www.eeworm.com/read/138638/13227279
c a_tree.c
/*
** A binary search tree implemented with a static array. The
** array size can be adjusted only by changing the #define and
** recompiling the module.
*/
#include "tree.h"
#include
www.eeworm.com/read/138638/13227281
h tree.h
/*
** Interface for a binary search tree module
*/
#define TREE_TYPE int /* Type of value in the tree */
/*
** insert
** Add a new value to the tree. The argument is the value
** to be add
www.eeworm.com/read/240259/13228285
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/240259/13228287
h tree.h
//树的孩子兄弟表示法为存储结构的结构体Tree.h
template class Tree;
template struct TreeNode
{friend class Tree;//树类为友元
private:
TreeNode *firstChild;//第一个孩子结点指针域
TreeNode *nextSibli
www.eeworm.com/read/138383/13238547
cpp tree.cpp
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
tem