Homework Week 5 Trees
Homework Week 5 Trees
Trees
Keyboard Screen
54 2
12 12453
13 45231
24 4 2513
25
#include <iostream>
#include <cmath>
#include <set>
using namespace std;
struct Node{
int data;
Node* left;
Node* right;
Node(int val) {
data = val;
this->left = NULL;
this->right = NULL;
}
};
Node* root = new Node(1);
int main() {
return 0;
}