Introduction - If you have any usage issues, please Google them yourself
		 
God trump card, the first order is given, and in order traversal traversal traversal seek follow-up, request: function header is as follows: bool getPostOrder (const char* perOrder, const char* inOrder, char* postOrder)  return value is a boolean whether this is representative of binary Usage: char* perorder = " abdgcefh"   char* inorder = " dgbaechf"  or char* inorder = " abcde"   char postorder [1000]  if (getPostOrder (perorder, inorder, postorder)) (print ("  Post order is  s " , postorder) ) else (print ("  No such tree " ) )