摘要: ref #include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *lchild, *rchild; }bitree_t; bitree_t *createNode(int data) { b 阅读全文
posted @ 2021-03-13 23:17 苏小北1024 阅读(139) 评论(0) 推荐(0) 编辑