摘要: 1 #include <iostream> 2 using namespace std; 3 4 struct node 5 { 6 // 数据域 7 int data; 8 9 // 左节点 10 node *lc; 11 12 // 右结点 13 node *rc; 14 15 // 构造函数 阅读全文
posted @ 2019-03-14 23:20 mohist 阅读(343) 评论(0) 推荐(0) 编辑