树  0.1
数据结构_第6章
binaryTree.hh File Reference
#include "Queue.h"
#include "Stack.h"
#include "TreeException.hh"
#include "binTree.h"
#include <cassert>
#include <functional>
#include <iostream>
#include <utility>
Include dependency graph for binaryTree.hh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Tree::binaryTree< T, Comparator >
 用二叉链表实现的二叉树类 More...
 
class  Tree::binaryTree< T, Comparator >
 用二叉链表实现的二叉树类 More...
 
struct  Tree::binaryTree< T, Comparator >::BinNode
 二叉链表的结点类 More...
 

Namespaces

 Tree
 自定义的树类都在Tree名字空间内
 

Functions

template<class T , typename Comparator >
void Tree::printBinaryTree (const binaryTree< T, Comparator > &bin_tree, const typename binaryTree< T, Comparator >::value_type &flag, std::ostream &out=std::cout)
 输出一棵二叉树 More...
 
template<class T , typename Comparator >
bool Tree::operator== (const binaryTree< T, Comparator > &lhs, const binaryTree< T, Comparator > &rhs)
 比较两棵二叉树是否相同 "相同"是指: More...