- 博客(1)
- 收藏
- 关注
原创 C语言数据结构,二叉树的应用
#include<stdlib.h> #include<stdio.h> #include<string.h> #include<ctype.h> #define MAX_LEN 5 typedef struct node { char optr; int data; struct node* lchild; struct node* rchild; }BTNode; BTNode* getNode(char* str, int& pos) { BTN
2021-12-14 23:19:30
961
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人