PAT甲级 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
#include <cstdio>
#include <vector>
#include <unordered_set>

using namespace std;
int ne[100005], e[100005];

int main() {
    int n, head;
    int ad;
    vector<int> ans, print, remove;
    unordered_set<int> set;
    scanf("%d %d", &head, &n);
    for (int i = 0; i < n; ++i) {
        scanf("%d", &ad);
        scanf("%d %d", &e[ad], &ne[ad]);
    }
    for (int i = head; i != -1; i = ne[i]) {
        ans.push_back(i);
    }
    for (int i = 0; i < ans.size(); ++i) {
        if (set.count(abs(e[ans[i]])))
            remove.push_back(ans[i]);
        else {
            print.push_back(ans[i]);
            set.insert(abs(e[ans[i]]));
        }
    }
    for (int i = 0; i < print.size(); ++i) {
        if (i != print.size() - 1)
            printf("%05d %d %05d\n", print[i], e[print[i]], print[i + 1]);
        else
            printf("%05d %d -1\n", print[print.size() - 1], e[print[print.size() - 1]]);
    }
    for (int i = 0; i < remove.size(); ++i) {
        if (i != remove.size() - 1)
            printf("%05d %d %05d\n", remove[i], e[remove[i]], remove[i + 1]);
        else
            printf("%05d %d -1\n", remove[remove.size() - 1], e[remove[remove.size() - 1]]);
    }
    return 0;
}
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

XdpCs

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值