代码搜索:BinaryTree
找到约 1,360 项符合「BinaryTree」的源代码
代码结果 1,360
www.eeworm.com/read/272848/10941404
h binarytree.h
// abstract class binary tree
// abstract data type specification for binary trees
// all methods are pure virtual functions
// T is node type
#ifndef binaryTree_
#define binaryTree_
#includ
www.eeworm.com/read/221940/6956046
cs binarytree.cs
namespace Opus6
{
using System;
[Copyright("Copyright (c) 2001 by Bruno R. Preiss, P.Eng."), Version("$Id: BinaryTree.cs,v 1.5 2001/10/28 19:50:09 brpreiss Exp $")]
public class Bina
www.eeworm.com/read/466324/7032951
class binarytree.class
www.eeworm.com/read/461147/7232657
cpp binarytree.cpp
www.eeworm.com/read/461147/7232663
h binarytree.h
#ifndef BINARYTREE_H_
#define BINARYTREE_H_
#include"BinaryNode.h"
#include
template
class BinaryTree
{
public:
BinaryTree();
bool empty();
void preorder(void(*visit)
www.eeworm.com/read/456299/7352392
dsw binarytree.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "BinaryTree"=".\Bina
www.eeworm.com/read/456299/7352393
dsp binarytree.dsp
# Microsoft Developer Studio Project File - Name="BinaryTree" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86
www.eeworm.com/read/456299/7352394
ncb binarytree.ncb
www.eeworm.com/read/456299/7352395
plg binarytree.plg
Build Log
--------------------Configuration: BinaryTree - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\Users\lenov
www.eeworm.com/read/456299/7352396
cpp binarytree.cpp
#include
#include
typedef int ElemType;
struct NodeType //定义结点 结构体
{ ElemType data;
NodeType *lch,*rch;
};
class BiTree //定义 二叉树类 class
{public:
BiTree(){root=