zoukankan      html  css  js  c++  java
  • 1097. Deduplication on a Linked List (25)

    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

     1 #include<stdio.h>
     2 #include<math.h>
     3 #include<set>
     4 #include<algorithm>
     5 #include<vector>
     6 using namespace std;
     7 struct node
     8 {
     9     int val;
    10     int next,id;
    11 };
    12 node Link[100100];
    13 int main()
    14 {
    15     int head,n,id,val,next;
    16     scanf("%d%d",&head,&n);
    17     for(int i = 0 ;i < n ;++i)
    18     {
    19         scanf("%d%d%d",&id,&val,&next);
    20         Link[id].val = val;
    21         Link[id].next = next;
    22         Link[id].id = id;
    23     }
    24     int p = head;
    25     set<int> ss;
    26     vector<node> vv,vv2;
    27     while(p != -1)
    28     {
    29         int tem = abs(Link[p].val);
    30         if(ss.count(tem) == 0)
    31         {
    32             ss.insert(tem);
    33             vv.push_back(Link[p]);
    34         }
    35         else vv2.push_back(Link[p]);
    36         p = Link[p].next;
    37     }
    38     p = head;
    39     for(int i = 0 ; i < (int)vv.size() - 1;++i)
    40     {
    41         printf("%05d %d %05d
    ",vv[i].id,vv[i].val,vv[i+1].id);
    42     }
    43     if(vv.size() > 0)
    44         printf("%05d %d -1
    ",vv[vv.size()-1].id,vv[vv.size()-1].val);
    45 
    46     for(int i = 0 ;i < (int)vv2.size() -1;++i)
    47     {
    48         printf("%05d %d %05d
    ",vv2[i].id,vv2[i].val,vv2[i+1].id);
    49     }
    50     if(vv2.size() > 0)
    51         printf("%05d %d -1
    ",vv2[vv2.size()-1].id,vv2[vv2.size()-1].val);
    52     return 0;
    53 }
  • 相关阅读:
    New Day
    apache mod_xsendfile 让php提供更快的文件下载
    XSS跨站测试代码大全
    HTML5 使用application cache 接口实现离线数据缓存
    HTTP 204 与 205 应用
    php HTTP请求类,支持GET,POST,Multipart/form-data
    php 过滤html标记属性类
    php 利用fsockopen GET/POST 提交表单及上传文件
    php 实现BigPipe分块输出
    同一域名对应不同IP,访问指定主机文件内容的方法
  • 原文地址:https://www.cnblogs.com/xiaoyesoso/p/5213964.html
Copyright © 2011-2022 走看看