摘要: 1 #include <iostream> 2 #include <fstream> 3 using namespace std; 4 5 struct Tnode 6 { 7 int data; 8 Tnode *lchil,*rchil; 9 }; 10 11 // 向二叉排序树种插入固定值的节 阅读全文
posted @ 2023-12-30 13:25 小菜碟子 阅读(23) 评论(0) 推荐(0) 编辑