摘要: #include <iostream> using namespace std; struct BinaryTree { string data; BinaryTree *Lchild; BinaryTree *Rchild; }; void creat(BinaryTree *&T, string 阅读全文
posted @ 2022-06-24 00:48 梦千幽 阅读(58) 评论(0) 推荐(0)