正在加载图片...
C语言程序设计 清华大学郑莉安颖莲 二叉树的算法举例 后序遍历二叉树 postorder(root) struct tree来root if(!root)return postorder(root->left) postorder(root->right printf(%c", root->infoC语言程序设计 清华大学 郑莉 安颖莲 Page 10 二叉树的算法举例 ——后序遍历二叉树 postorder(root) struct tree *root; { if(!root) return; postorder(root->left); postorder(root->right); printf("%c",root->info); }
<<向上翻页向下翻页>>
©2008-现在 cucdc.com 高等教育资讯网 版权所有