摘要:
#include "stdio.h" #include "stdlib.h" /*树节点*/ typedef struct node{ int data; struct node * left; /*节点左边的树枝*/ struct node * right;/*节点右边的树枝*/ }Node; / 阅读全文
posted @ 2021-05-16 09:48
cheshulin
阅读(376)
评论(0)
推荐(0)