代码搜索:BinaryTree
找到约 1,360 项符合「BinaryTree」的源代码
代码结果 1,360
www.eeworm.com/read/119787/14822418
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// BinaryTree.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdaf
www.eeworm.com/read/119492/14827835
cpp exp14_1.cpp
#include
#include
templateclass BinaryTree;
templateclass Node{
Node *lchild,*rchild;
T info;
public:
Node(){lchild=NULL;rchild=NULL;}
No
www.eeworm.com/read/118697/14859057
cpp btree.cpp
/**************************************************
* Essential C++ -- Stanley Lippman
* Addison-Wesley
* ISBN 0-201-48518-4
* homepage: www.objectwrite.com
* email: slippman@objectwrite.co
www.eeworm.com/read/219654/14871557
h randompicker.h
#pragma once
#include "Binarytree.h"
#include "Node.h"
class CRandomPicker
{
public:
CRandomPicker(CBinaryTree& tree);
~CRandomPicker(void);
int GetRandomLeafID(void);
protected:
C
www.eeworm.com/read/118226/14881243
cpp main.cpp
#include
#include"BinaryTree.h"
#include"forest.h"
template
BinaryTree* Forest2Binary(Tree* tree);
void main()
{
/*
一下的定义仅用来检测函数的正确性,而与函数体无关
本程序中没有做用户界面
下面的定义生成的树的
www.eeworm.com/read/118192/14883122
c 10-10.c
#include < stdio.h>
typedef int Type;
typedef int T;
typedef struct BiTNode {
Type data;
struct BiTNode *lchild,*rchild;
}binarytree;
typedef struct Huffmannode{
binarytree tr
www.eeworm.com/read/117962/14892505
cpp 00348307江云亮hw4_0401.cpp
/*// 我真诚地保证:
// 我自己独立地完成了整个程序从分析、设计到编码的所有工作。
// 如果在上述过程中,我遇到了什么困难而求教于人,那么,我将在程序实习报告中
// 详细地列举我所遇到的问题,以及别人给我的提示。
// 在此,我感谢李逸男,陈昊罡等同学对我的启发和帮助。下面的报告中,我还会具体地提到
// 他们在各个方法对我的帮助。
// 我的程序里中凡 ...
www.eeworm.com/read/116039/14991653
cpp p170.cpp
#define NULL 0
#define MAX(x1,x2) (x1>x2?x1:x2)
#include
template class BinaryTree;
template class BinTreeNode{
friend class BinaryTree;
public:
www.eeworm.com/read/116039/14991810
cpp page170.cpp
#define NULL 0
#define Max(x1,x2) (x1>x2?x1:x2)
#include
template class BinaryTree;
template class BinTreeNode{
friend class BinaryTree;
public: