-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (22 loc) · 750 Bytes
/
main.cpp
File metadata and controls
31 lines (22 loc) · 750 Bytes
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
#include <iostream>
#include "BinaryTree.h"
struct Person
{
unsigned int age;
std::string name;
Person(std::string name, unsigned int age): name(name), age(age){};
bool operator==(const Person &person){return this->age == person.age && this->name == person.name;}
};
int main()
{
BinaryTree<Person, int> tree([](Person &person){return person.age;});
tree.insert(Person("Ivan", 17));
tree.insert(Person("Grisha", 25));
tree.insert(Person("Vova", 65));
for(auto &i: tree.getInOrderTraversal())
std::cout << i.name << ' ' << i.age << std::endl;
tree.remove(Person("Ivan", 17));
for(auto &i: tree.getInOrderTraversal())
std::cout << i.name << ' ' << i.age << std::endl;
return 0;
}