#include "Tree.h" #include using namespace std; int main() { Tree t; for ( int v: {4,2,3,6,1,7,5} ) { t.insert(v); } t.print(cout); }