Hi, as the title says, i want to write a recursive function that implements a full or quite full tree by inserting one int at a time..
this is the classes that i use:
template <class T>
class nodo{
public:
nodo();
nodo(T x);
nodo(const nodo<T>&);
~nodo(){};
nodo<T> *right;
nodo<T> *left;
T info;
};
void insert(T); //this is the extern function to call to insert in unordered way. just implemented. it simply calls insert_in_tree_not_order(nodo<T>*,T).