1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
//#include "TD_Tree.h"
//#include "BinTree.h"
//#include "BinSearchTree.h"
#include "ThreadBinTree.h"
int preceed (const char& c1, const char& c2)
{
return c1 - c2;
}
bool preceed2 (const int &x, const int &y)
{
return x <= y;
}
void dump(char & value)
{
cout << value;
}
void dump2( int & value)
{
cout << value << " ";
}
int main()
{
cout << endl;
BinThreadTree<int> t5(preceed2);
t5.preOrderAdd( 555 );
t5.preOrderAdd( 111 );
t5.preOrderAdd( 333 );
t5.preOrderAdd( 99 );
t5.preOrderAdd( 866 );
t5.preOrderAdd( 666 );
t5.preOrderAdd( 777 );
t5.preorder( dump2);
//BinThreadTree<int> t6(preceed2);
//t6.inOrderAdd(555);
//t6.inOrderAdd(111);
//t6.inOrderAdd(333);
//t6.inOrderAdd(99);
//t6.inOrderAdd(866);
//t6.inOrderAdd(666);
//t6.inOrderAdd(777);
//t6.inorder(dump2);
/*
TDTree<char> t1( preceed);
t1.add( 'H', 'H', 1 );
t1.add( 'H', 'i', 1 );
t1.add( 'i', ' ', 1);
t1.add( 'H', 't', 2 );
t1.add( 't', 'h', 1 );
t1.add( 't', 'r', 2 );
t1.add( 't', 'e', 3 );
t1.add( 'h', 'E', 1);
cout << " t1 printing breadth first traversal \n";
t1.breadthFirstTraversal( dump);
cout << endl << endl;
cout << " t1 printing depth first traversal \n";
t1.depthFirstTraversal( dump);
cout << endl << endl;
*/
cout<<endl;
return (0);
}
|