码迷,mamicode.com
首页 > 其他好文 > 详细

L2-002. 链表去重(模拟)

时间:2018-03-26 22:28:55      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:包含   mes   push   程序   iter   ble   正整数   ring   lib   

题意:

给定一个带整数键值的单链表L,本题要求你编写程序,删除那些键值的绝对值有重复的结点。即对任意键值K,只有键值或其绝对值等于K的第一个结点可以被保留。同时,所有被删除的结点必须被保存在另外一个链表中。例如:另L为21→-15→-15→-7→15,则你必须输出去重后的链表21→-15→-7、以及被删除的链表-15→15。

输入格式:

输入第一行包含链表第一个结点的地址、以及结点个数N(<= 105 的正整数)。结点地址是一个非负的5位整数,NULL指针用-1表示。

随后N行,每行按下列格式给出一个结点的信息:

Address Key Next

其中Address是结点的地址,Key是绝对值不超过104的整数,Next是下一个结点的地址。

输出格式:

首先输出去重后的链表,然后输出被删除结点组成的链表。每个结点占一行,按输入的格式输出。

分析:string超时,地址用int存,输出%05d。

#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<cmath>
#include<iostream>
#include<sstream>
#include<iterator>
#include<algorithm>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<stack>
#include<deque>
#include<queue>
#include<list>
#define lowbit(x) (x & (-x))
const double eps = 1e-8;
inline int dcmp(double a, double b){
    if(fabs(a - b) < eps) return 0;
    return a > b ? 1 : -1;
}
typedef long long LL;
typedef unsigned long long ULL;
const int INT_INF = 0x3f3f3f3f;
const int INT_M_INF = 0x7f7f7f7f;
const LL LL_INF = 0x3f3f3f3f3f3f3f3f;
const LL LL_M_INF = 0x7f7f7f7f7f7f7f7f;
const int dr[] = {0, 0, -1, 1, -1, -1, 1, 1};
const int dc[] = {-1, 1, 0, 0, -1, 1, -1, 1};
const int MOD = 1e9 + 7;
const double pi = acos(-1.0);
const int MAXN = 100000 + 10;
const int MAXT = 10000 + 10;
using namespace std;
int nex[MAXN];
int zhi[MAXN];
int shu[MAXN];
int pos[MAXN];
map<int, int> mp;
vector<pair<int, int> > v1;
vector<pair<int, int> > v2;
int main(){
    int st;
    int N;
    cin >> st >> N;
    int a, b;
    int x;
    for(int i = 0; i < N; ++i){
        cin >> a >> x >> b;
        nex[a] = b;
        zhi[a] = x;
    }
    int tmp = st;
    int cnt = 0;
    while(1){
        ++cnt;
        pos[cnt] = tmp;
        shu[cnt] = zhi[tmp];
        if(nex[tmp] == -1) break;
        tmp = nex[tmp];
    }
    for(int i = 1; i <= cnt; ++i){
        int t = abs(shu[i]);
        if(!mp.count(t)){
            mp[t] = 1;
            v1.push_back(pair<int, int>(pos[i], shu[i]));
        }
        else{
            v2.push_back(pair<int, int>(pos[i], shu[i]));
        }
    }
    int len = v1.size();
    for(int i = 0; i < len; ++i){
        printf("%05d %d ", v1[i].first, v1[i].second);
        if(i == len - 1){
            cout << "-1" << endl;
        }
        else{
            printf("%05d\n", v1[i + 1].first);
        }
    }
    len = v2.size();
    for(int i = 0; i < len; ++i){
        printf("%05d %d ", v2[i].first, v2[i].second);
        if(i == len - 1){
            cout << "-1" << endl;
        }
        else{
            printf("%05d\n", v2[i + 1].first);
        }
    }
    return 0;
}

  

L2-002. 链表去重(模拟)

标签:包含   mes   push   程序   iter   ble   正整数   ring   lib   

原文地址:https://www.cnblogs.com/tyty-Somnuspoppy/p/8654107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!