摘要: /* 链表节点的插入与删除 编译环境:VC++ 6.0 编译系统:windows XP SP3 */ #include <stdio.h> #include <stdlib.h> #include <malloc.h> // 定义链表中的节点 typedef struct node { int me 阅读全文
posted @ 2017-05-16 18:13 J小黑 阅读(60606) 评论(0) 推荐(3) 编辑