-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
74 lines (56 loc) · 1.11 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
67
68
69
70
71
72
//Partner: Veronica Herzog
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include "MyBST.h"
using namespace std;
int main()
{
string currentLine = "";
string currentLine2 = "";
string file = "T1.txt";
ifstream myfile;
myfile.open(file.c_str());
string file2 = "T2.txt";
ifstream myfile2;
myfile2.open(file2.c_str());
vector<int>BST1;
vector<int>BST2;
if (!myfile.is_open())
{
cout << "File did not open" << endl;
}
else
{
while(getline(myfile, currentLine))
{
int num = stoi(currentLine);
BST1.push_back(num);
}
while(getline(myfile2, currentLine2))
{
int num = stoi(currentLine2);
BST2.push_back(num);
}
}
MyBST T_1 = MyBST(BST1);
MyBST T_2 = MyBST(BST2);
vector<Rotation> rotations = T_1.transform(T_2);
for (vector<Rotation>::iterator it = rotations.begin(); it< rotations.end(); it++)
{
cout << (*it).print();
cout << '\n';
}
cout << T_1.print() << endl;
cout << T_2.print() << endl;
//after transform
/*
string x, y;
x = T_1.print();
cout << x << endl;
y = T_2.print();
cout << y << endl;
*/
//need to cout the print
}