#include<iostream>
#include<conio.h>
using namespace std;
struct node{
int data;
node *left=NULL;
node *right=NULL;
};
class tree{
private:
node *root=NULL;
public:
void insert(int value);
std
};
void tree::insert(int value){
node *temp = new node;
temp->data = value;
...
John Johnson
“ First, solve the problem. Then, write the code. ”