#include "Queue.h"
#include "Stack.h"
#include "TreeException.hh"
#include "binTree.h"
#include <cassert>
#include <functional>
#include <iostream>
#include <utility>
Go to the source code of this file.
|
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...
|
|