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
|
#include<iostream>
#include<cstdlib>
#include "BST.cpp"
using namespace std;
int main()
{
ifstream infile("tvDB.txt");
if(file.is_open())
{
string myArray[];
for(int i = 0; i < 5; ++i)
{
file >> myArray[i];
}
}
int TreeKeys[16] = {50, 76, 21, 4, 32, 64, 15, 52, 14, 100, 83, 2, 3, 70, \
87, 80};
BST myTree; // Create the binary search tree
cout << "Printing the tree in ordder\nBefore adding numbers\n";
myTree.PrintInOrder(); // print tree in order
for(int i = 0; i < 16; i++)
{
myTree.AddLeaf(TreeKeys[i]); // copy values into tree
}
cout << "Printing the tree in order\nAfter adding numbers\n";
myTree.PrintInOrder(); // print tree in order
for(int i = 0; i < 16; i++)
{
myTree.AddLeaf(TreeKeys[i]); // copy values into tree
}
cout << "Printing the tree in order\nAfter adding numbers\n";
myTree.PrintInOrder(); // print tree in order
cout << endl;
return 0;
}
|