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 (≤10​5​​ ) 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 10​4
​​ , 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

分析

  • 结构体数组存储第一遍读的链表,下标即地址
  • 根据起始地址遍历一遍链表,01数组p标志key值的绝对值是否出现过,两种情况分别push到vk和vr向量中
  • 遍历一遍vk,vr输出两个链表

code

#include <iostream>
#include <vector>
#include <cmath>
using namespace std;

struct node{
    int ad,key,next;
}Node[100000];

int p[10001];
vector<node> vk,vr;

int main()
{
    int start,n;
    scanf("%d %d",&start,&n);
    int a,b,c;
    for(int i=0;i<n;i++){
        scanf("%d%d%d",&a,&b,&c);
        Node[a] = {a,b,c};
    }
    for(int i=start;i!=-1;i=Node[i].next){
        if(p[abs(Node[i].key)]==1){
            vr.push_back(Node[i]);
        }else{
            p[abs(Node[i].key)]=1;
            vk.push_back(Node[i]);
        }
    }
    for(int i=0;i<vk.size();i++){
        if(i==0){
            printf("%05d %d",vk[i].ad,vk[i].key);
        } else {
            printf(" %05d\n%05d %d",vk[i].ad,vk[i].ad,vk[i].key);
        }
        if(i==vk.size()-1){
            printf(" -1\n");
        }
    }

     for(int i=0;i<vr.size();i++){
        if(i==0){
            printf("%05d %d",vr[i].ad,vr[i].key);
        } else {
            printf(" %05d\n%05d %d",vr[i].ad,vr[i].ad,vr[i].key);
        }
        if(i==vr.size()-1){
            printf(" -1\n");
        }
    }
    return 0;
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,486评论 0 10
  • 下面是贾谊写的《过秦论》。当作本文的概述,再合适不过。在司马迁的《史记·秦始皇本纪 》中引用全文引用!一字不落!史...
    EasyChill阅读 1,134评论 4 4
  • 在日料店见到了童年的小伙伴。 掐指一算,上一次见面应该是在24年前。 姑娘现在非常出色,经营着自己的珠宝店,在国外...
    迷糊的谜阅读 280评论 0 0
  • 2017年11月18日 星期六 晴冷(80) 今天早餐我们在外面吃的,从楼上下来的时候还真冷啊,天上还时不时飘来几...
    大野芳菲阅读 201评论 0 0
  • 这种东西,面试问的人很多,但是基本答案都是用队列组,用栅栏什么的 这种,最lowB的方法就是自己写个变量,每次请求...
    蒋昉霖阅读 472评论 1 2