摘要: #include<stdio.h> #include<malloc.h> struct tree{ int data; struct tree *lchild,*rchild; }; typedef struct tree linktree; //别名 void xianxu(linktree *p 阅读全文
posted @ 2020-11-24 11:00 JackieDYH 阅读(4) 评论(0) 推荐(0) 编辑