摘要: #include #include //提供malloc()原型 typedef struct LNode *List; typedef int ElementType; //定义数据结构的自定义名称 struct LNode{ ElementType Data; //数据域 List Next; //指针域 }; struct... 阅读全文
posted @ 2018-07-31 23:38 丁壮 阅读(1730) 评论(0) 推荐(0) 编辑