Hàm duyệt cây nhị phân theo LNR
struct Node
{ int Data;
Node * Left, * Right;
};
typedef Node * Tree;
void LNR(Tree T)
{ if(T!=NULL)
{ LNR(T->Left);
cout<Data<<"\t";
LNR(T->Right);
}
}