-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
67 lines (61 loc) · 1.27 KB
/
main.cpp
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
//
// main.cpp
// Binary Search Tree
//
// Created by Matt Burdumy on 10/21/12.
// Copyright 2012 Georgetown University. All rights reserved.
//
#include <iostream>
#include "intStruct.h"
#include "charStruct.h"
#include "Bnode.h"
#include "BinarySearchTree.h"
using namespace std;
int main (int argc, const char * argv[])
{
INT test(100);
//INT test2(70);
//CHAR char_test('X');
//CHAR char_test2('A');
//CHAR char_test3(char_test);
Bnode<INT> node1(test);
// BinaryTree<INT> tree;
// INT _50(50);
// INT _70(70);
// INT _20(20);
// INT _65(65);
// INT _30(30);
// INT _1(1);
// tree.insert(_50);
// tree.insert(_70);
// tree.insert(_20);
// tree.insert(_65);
// tree.insert(_30);
// tree.insert(_1);
// tree.printInOrder();
//
// int find_this =30;
//
// if(tree.find(find_this))
// cout<<"Found : "<<find_this<<endl;
// else
// cout<<"Not Found : "<<find_this<<endl;
//
// tree.delete_all();
//
//
// if (test > test2)
// cout<<"test > test2"<<endl;
//
// if (test < test2)
// cout<<"test < test2"<<endl;
//
//
// test = test2;
// char_test3 = char_test2;
//
//
//
std::cout << "Hello, World!\n"<<endl;
return 0;
}