摘要: #include <string.h> #include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef struct LNode { char *data;//字符串 struct LNode *next; }LinkNode; 阅读全文
posted @ 2020-12-22 21:24 邵泽玉 阅读(896) 评论(0) 推荐(0) 编辑