• 1052 Linked List Sorting (25 分)


    A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure contains an integer key and a Next pointer to the next structure. Now given a linked list, you are supposed to sort the structures according to their key values in increasing order.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains a positive N (<) and an address of the head node, where N is the total number of nodes in memory and the address of a node is a 5-digit positive integer. NULL is represented by −.

    Then N lines follow, each describes a node in the format:

    Address Key Next
     

    where Address is the address of the node in memory, Key is an integer in [−], and Next is the address of the next node. It is guaranteed that all the keys are distinct and there is no cycle in the linked list starting from the head node.

    Output Specification:

    For each test case, the output format is the same as that of the input, where N is the total number of nodes in the list and all the nodes must be sorted order.

    Sample Input:

    5 00001
    11111 100 -1
    00001 0 22222
    33333 100000 11111
    12345 -1 33333
    22222 1000 12345
     

    Sample Output:

    5 12345
    12345 -1 00001
    00001 0 11111
    11111 100 22222
    22222 1000 33333
    33333 100000 -1


    #include<bits/stdc++.h>
    using namespace std;
    const int maxn=100005;
    struct Node{
        int address,data,next;
        bool flag;
    }node[maxn];
    bool cmp(Node a,Node b){
        if(a.flag==false||b.flag==false){
            return a.flag>b.flag;
        }
        else{
            return a.data<b.data;
        }
    }
    int main(){
        for(int i=0;i<maxn;i++){
            node[i].flag=false;
        }
        int begin,n,address;
        scanf("%d %d",&n,&begin);
        for(int i=0;i<n;i++){
            scanf("%d",&address);
            scanf("%d %d",&node[address].data,&node[address].next);
            node[address].address=address;
        }
        int p=begin,count=0;
        while(p!=-1){
            node[p].flag=true;
            count++;
            p=node[p].next;
        }
        n=count;
        if(n==0){
            printf("0 -1
    ");
            return 0;
        }
        sort(node,node+maxn,cmp);
        printf("%d %05d
    ",n,node[0].address);
        for(int i=0;i<n;i++){
            if(i==n-1){
                printf("%05d %d -1
    ",node[i].address,node[i].data);
            }
            else{
                printf("%05d %d %05d
    ",node[i].address,node[i].data,node[i+1].address);
            }
        }
        
        return 0;
    }
  • 相关阅读:
    自然语言处理(三)——PTB数据的batching方法
    自然语言处理(二)——PTB数据集的预处理
    自然语言处理(一)——语言模型评价方法
    TensorFlow数据集(二)——数据集的高层操作
    TensorFlow数据集(一)——数据集的基本使用方法
    TensorFlow多线程输入数据处理框架(四)——输入数据处理框架
    Node的简介
    seajs的原理以及基本使用
    git常用指令
    一个小白的四次前端面试经历
  • 原文地址:https://www.cnblogs.com/dreamzj/p/14518507.html
Copyright © 2020-2023  润新知