The total traversal combinations, possible for the below mentioned Sample Tree are
DLR, LDR, LRD, DRL, RDL, RLD
Sample Tree [ D=root , L= LeftNode , R= RightNode ]
D
/ \
L R
PreOrder: DLR
InOrder: LDR
PostOrder: LRD
Why other combinations like DRL, RDL & RLD never considered ?