2019年10月14日
摘要: #include #include #include #define ElemType char using namespace std; typedef struct CSNode{ ElemType data; struct CSNode *firstchild,*nextsibling; }CSNode,*CSTree; void CreatCSTree(CSTree... 阅读全文
posted @ 2019-10-14 20:13 一仟零一夜丶 阅读(958) 评论(0) 推荐(0)