-
-
-
-
-
-
-
-
C_programming.zip
C Programming/Print version
From Wikibooks, the opencontent
textbooks collection
-
-
Follow-upbinarytreetraversal.rar
... * perorder = "abdgcefh"
char* inorder = "dgbaechf" 或者 char* inorder = "abcde"
char postorder[1000]
if (getPostOrder(perorder, inorder, postorder))
{
print("Post order is s", postorder)
}
else
{
print("No such tree")
}
-
-