postorder(ptr->right_child);printf("%c",ptr->ch);} } void main(){ printf("构建一个二叉树(结点数为n):\n");root=create(root);printf("前序遍历二叉树:\n");preorder(root);printf("\n");printf("中序遍历二叉树:\n");inorder(root);printf("\n");printf("后序遍历二...
五、要求二叉树按二叉链表形式存储。(1)写一个建立二叉树的算法。___[注]编写程序可选用pascal或c语言算法描述采用类语言,算法应加上必要的注释,所有答案均要求写在答题纸上 相关知识点: 试题来源: 解析 答案请答在答题纸上,答在本试题上的答案一律无效 反馈 收藏...