Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the first node of which the value or absolute value of its key equals K will be kept. At the mean time, all the removed nodes must be kept in a separate list. For example, given L being 21→-15→-15→-7→15, you must output 21→-15→-7, and the removed list -15→15.

Input Specification:

Each input file contains one test case. For each case, the first line contains the address of the first node, and a positive N (<= 105) which is the total number of nodes. The address of a node is a 5-digit nonnegative integer, and NULL is represented by -1.

Then N lines follow, each describes a node in the format:

Address Key Next

where Address is the position of the node, Key is an integer of which absolute value is no more than 104, and Next is the position of the next node.

Output Specification:

For each case, output the resulting linked list first, then the removed list. Each node occupies a line, and is printed in the same format as in the input.

Sample Input:

00100 5
99999 -7 87654
23854 -15 00000
87654 15 -1
00000 -15 99999
00100 21 23854

Sample Output:

00100 21 23854
23854 -15 99999
99999 -7 -1
00000 -15 87654
87654 15 -1
 #include<stdio.h>
#include<math.h>
#include<set>
#include<algorithm>
#include<vector>
using namespace std;
struct node
{
int val;
int next,id;
};
node Link[];
int main()
{
int head,n,id,val,next;
scanf("%d%d",&head,&n);
for(int i = ;i < n ;++i)
{
scanf("%d%d%d",&id,&val,&next);
Link[id].val = val;
Link[id].next = next;
Link[id].id = id;
}
int p = head;
set<int> ss;
vector<node> vv,vv2;
while(p != -)
{
int tem = abs(Link[p].val);
if(ss.count(tem) == )
{
ss.insert(tem);
vv.push_back(Link[p]);
}
else vv2.push_back(Link[p]);
p = Link[p].next;
}
p = head;
for(int i = ; i < (int)vv.size() - ;++i)
{
printf("%05d %d %05d\n",vv[i].id,vv[i].val,vv[i+].id);
}
if(vv.size() > )
printf("%05d %d -1\n",vv[vv.size()-].id,vv[vv.size()-].val); for(int i = ;i < (int)vv2.size() -;++i)
{
printf("%05d %d %05d\n",vv2[i].id,vv2[i].val,vv2[i+].id);
}
if(vv2.size() > )
printf("%05d %d -1\n",vv2[vv2.size()-].id,vv2[vv2.size()-].val);
return ;
}

最新文章

  1. [LeetCode] Restore IP Addresses 复原IP地址
  2. console.log((function f(n){return ((n &gt; 1) ? n * f(n-1) : n)})(5))调用解析
  3. 纯window下VMware 安装 OS X El Capitan 原版映像【未完待续】
  4. 黑客长期摇号不中&quot;黑&quot;掉北京小客车摇号网
  5. MySQL单机多实例安装并配置主从复制
  6. Webpack+React配合开发
  7. ASP.NET 使用application和session对象写的简单聊天室程序
  8. ubuntu14.04源代码安装postgresql 9.1
  9. ISO,CD,iso9660
  10. Android:ViewPager详细解释(异步网络负载图片,有图片缓存,)并与导航点
  11. shell脚本进阶之条件测试与条件语句
  12. C# 程序运行进度显示Lable
  13. 盖茨基金会:如何使用Python拯救生命
  14. 工作中的小tips(持续更新)
  15. sql索引唯一
  16. xml数据改动
  17. PHP-GD库开发手记
  18. Oracle 11g 管理工具及SQL Deverloper 的使用教程
  19. 缺少libtool依赖导致编译安装失败
  20. C#基础 (一)

热门文章

  1. uva 12100 Printer Queue 优先级队列模拟题 数组模拟队列
  2. Android 自定义Dialog工具类
  3. 【Trie】模板(动态指针,静态数组)
  4. ZWave for Arduino
  5. Android 软键盘操作
  6. 【转】loadrunner场景对性能测试策略的映射
  7. 【转载]】Microsoft SQL Server, 错误:4064的解决方法
  8. Part 67 to 70 Talking about method parameters in C#
  9. SVG之初识
  10. .NET使用NPOI读取Word模板并替换关键字并下载