Loading

摘要: #include <stdio.h> typedef struct Node { int data; struct Node* lchild; struct Node* rchild; }Node; //使用数组存放数据,注意是按照一层一层的排列,-1代表为空 int array[] = {1,2, 阅读全文
posted @ 2020-11-23 18:45 沿途有余弦 阅读(935) 评论(0) 推荐(0)