摘要: 题意:给定一个带整数键值的链表 L,你需要把其中绝对值重复的键值结点删掉。(给定链表变成去重链表和被删除元素链表) 思路:模拟链表实现 1 #include <iostream> 2 #include<cstdio> 3 #include<string> 4 #include<cstring> 5 阅读全文
posted @ 2020-09-22 20:36 dark_ming 阅读(190) 评论(0) 推荐(0)