摘要: 树 二叉树 操作集 //判空 //创建 //遍历 //先序 //中序 //后序 //层序 遍历 //先序 void PreOrderTraversal (BinTree BT) { if (BT) { printf("%d", BT->Data); PreOrderTraversal (BT->Le 阅读全文
posted @ 2022-01-31 10:47 Nsky_sea 阅读(25) 评论(0) 推荐(0)