2015年4月14日

摘要: 这里利用直接寻址法去重,遍历链表,如果对应数组位置值为0,则修正为1,如果对应数组为1,则删除该节点。(数组初始化为0)链表的一些操作都简单的实现了一下。#include #include #include struct Node{ int key; Node *next;};struc... 阅读全文
posted @ 2015-04-14 12:50 Natsukashiii 阅读(498) 评论(0) 推荐(0) 编辑

导航