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 (≤) which is the total number of nodes. The address of a node is a 5-digit nonnegative integer, and NULL is represented by −.

    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 1, 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 <iostream>
    #include <vector>
    #include <unordered_map>
    using namespace std;
    struct node {
        int addr, val, next;
    };
    int main() {
        int start;
        int N;
        node tmp;
        vector<node> v, v_del;
        unordered_map<int, node> m;
        cin >> start >> N;
        while(N--) {
            cin >> tmp.addr >> tmp.val >> tmp.next;
            m[tmp.addr] = tmp;
        }
        unordered_map<int, bool> has;
        while(start != -1) {
            if(!has[abs(m[start].val)]) {
                v.push_back(m[start]);
                has[abs(m[start].val)] = true;
            }else v_del.push_back(m[start]);
            start = m[start].next;
        }
        for(int i = 0; i < v.size(); i++)
            if(i == 0) printf("%05d %d ", v[i].addr, v[i].val);
            else printf("%05d
    %05d %d ", v[i].addr, v[i].addr, v[i].val);
        printf("-1
    ");
        if(v_del.size() > 0) {
            for(int i = 0; i < v_del.size(); i++)
                if(i == 0) printf("%05d %d ", v_del[i].addr, v_del[i].val);
                else printf("%05d
    %05d %d ", v_del[i].addr, v_del[i].addr, v_del[i].val);
            printf("-1
    ");
        }
        return 0;
    }
  • 相关阅读:
    System Idle Process SYSTEM占用CPU
    apache和nginx的rewrite的区别
    解决file_get_contents failed to open stream: HTTP request failed! 错误
    个人总结大型高并发高负载网站的系统架构(转)
    代码的抽象三原则
    mysqldump导入某库某表的数据
    mysql中insert into和replace into以及insert ignore用法区别
    【原创】学习日记4:nginx负载均衡(二)2012.01.08
    【原创】学习日记1:redis安装以及lnmp环境搭建2012.01.06
    mysql优化 mysql.ini优化
  • 原文地址:https://www.cnblogs.com/littlepage/p/12905628.html
Copyright © 2011-2022 走看看