摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 struct node 5 { 6 int data; 7 struct node *left,*right; 8 }; 9 struct node * new() 阅读全文
posted @ 2019-11-17 21:37 念文丶 阅读(207) 评论(0) 推荐(0) 编辑