摘要:
Write code to remove duplicates from an unsorted linked list FOLLOW UPHow would you solve this problem if a temporary buffer is not allowed?如果我们用缓冲区,我们可以在hash表里跟踪每一个元素,同时删除任何重复的。本文主要是记载线性表的一些实现方法。struct LNode
{ ElemType data; struct LNode *next;
};
typedef struct LNode *Linklist;线性表的定义;void CreatL.. 阅读全文
posted @ 2012-07-18 20:43
JWMNEU
阅读(175)
评论(0)
推荐(0)

浙公网安备 33010602011771号