char data[3][3];
Tree *left;
Tree *right;
Tree *up;
Tree *down
Tree *parent;
public:
Tree(char data[3][3]);
};
[\code]
I am not sure on How I make it create the whole tree from the constructor, without it creating the same node multiple times, or goes beyond the data size.