摘要: #include <stdio.h>#include <stdlib.h>#include <time.h>typedef struct Node { int data; struct Node *lchild, *rchild;} Node;typedef struct Tree { Node * 阅读全文
posted @ 2020-11-20 02:57 代码附体 阅读(321) 评论(2) 推荐(3)