代码搜索:Tree
找到约 10,000 项符合「Tree」的源代码
代码结果 10,000
www.eeworm.com/read/297411/8024274
js tree.js
//树类
//=====================================================================
function Tree(name, objectname){
var rootnode = new Node();
rootnode.name = name;
rootnode.tree = this;
www.eeworm.com/read/297407/8024312
cpp tree.cpp
//在一已知的二叉树上建立中序线索树并遍历之
#include
#include
#include
char ch;
typedef struct BiThrNode//定义二叉树
{
char data;
struct BiThrNode *lchild,*rchild;
int
www.eeworm.com/read/297340/8028909
cc tree.cc
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
/* By Pablo Martin and Paula Ballester,
* Strathclyde University, Glasgow.
* June, 2003.
*/
/* Copyright (c) 2003 Strathcl
www.eeworm.com/read/297340/8029113
h tree.h
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
/* By Pablo Martin and Paula Ballester,
* Strathclyde University, Glasgow.
* June, 2003.
*/
/* Copyright (c) 2003 Strathcl
www.eeworm.com/read/297280/8033299
cpp tree.cpp
//二叉树的三种遍历
#include
using namespace std;
typedef char elemtype;
struct bitree
{
elemtype data;
bitree *lchild,*rchild;
};
bitree *create()
{ bitree *root,*s,*q[100];
i
www.eeworm.com/read/297233/8037708
c tree.c
/* Language-independent node constructors for parse phase of GNU compiler.
Copyright (C) 1987, 88, 92-96, 1997 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software;
www.eeworm.com/read/297233/8040403
def tree.def
/* This file contains the definitions and documentation for the
tree codes used in the GNU C compiler.
Copyright (C) 1987, 1988, 1993, 1995, 1997 Free Software Foundation, Inc.
This file is par
www.eeworm.com/read/297233/8041512
c tree.c
/* Language-dependent node constructors for parse phase of GNU compiler.
Copyright (C) 1987, 88, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
Hacked by Michael Tiemann (tiemann@cygnus.com
www.eeworm.com/read/297233/8042317
h tree.h
/* Front-end tree definitions for GNU compiler.
Copyright (C) 1989, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
This file is part of GNU CC.
GNU CC is free software; you can redistribute
www.eeworm.com/read/297059/8057293