摘要:
二叉树的定义方式: 1.顺序表: typedef struct SqTree{ char data[maxsize]; bool isNULL; }SqTree; 2.链表 struct node{ int val; struct node *lchild,*rchild; // int Ltag, 阅读全文
posted @ 2024-02-21 20:41
_titleInfo
阅读(22)
评论(0)
推荐(0)