摘要: 一.展示 1.1. 代码 #include<stdio.h> #include<stdlib.h> #define max 100000 typedef struct binaryTree { struct binaryTree* lchild, * rchild; char vaule; }BT; 阅读全文
posted @ 2023-09-10 23:23 彭乐祥 阅读(6) 评论(0) 推荐(0) 编辑