随笔分类 -  C语言、数据结构

摘要:#include <stdio.h> #include <malloc.h> typedef int ElemType; typedef struct LNode{ ElemType data; struct LNode *next; }CLinkNode; void InitList(CLinkN 阅读全文
posted @ 2022-10-18 13:06 只字不提 阅读(153) 评论(0) 推荐(0)