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

1075 链表元素分类

时间:2020-02-24 20:10:52      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:alt   str   struct   技术   ++i   stream   name   ace   静态   

这是一道 模板题。直接背步骤,写代码。。。。

#include<iostream>
#include<algorithm>
using namespace std;

const int maxn = 100010;
struct Node { //第一步:定义静态链表
    int address,next,data;
    int order = 2*maxn;//第二步,初始化order
} node[maxn];

bool cmp(const Node& a,const Node& b) {
    return     a.order < b.order;
}
int main() {
    int begin,n,k,address;
    cin>>begin>>n>>k;
    for(int i = 0; i < n; ++i) {
        cin>>address;
        cin>>node[address].data>>node[address].next;
        node[address].address = address;
    }
    int p = begin,cnt = 0;//第三步,遍历静态链表,统计有效结点个数,并标记 order
    while(p != -1) {
        if(node[p].data < 0) node[p].order = cnt++ - maxn;//负值元素
        else if(node[p].data > k) node[p].order = maxn + cnt++;//大于 k的元素
        else node[p].order = cnt++;//元素在[0,k]内
        p = node[p].next;
    }
    sort(node,node+maxn,cmp);//第四步,按order递增排序
    for(int i = 0; i < cnt; ++i) {//第五步,按格式输出 
        if(i < cnt - 1){
            printf("%05d %d %05d\n",node[i].address,node[i].data,node[i+1].address);
        }else printf("%05d %d -1",node[i].address,node[i].data);
    }
    return 0;
}

技术图片

 

1075 链表元素分类

标签:alt   str   struct   技术   ++i   stream   name   ace   静态   

原文地址:https://www.cnblogs.com/keep23456/p/12358364.html

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