1052 Linked List Sorting (25分)

本文介绍了一种使用链表进行排序的算法实现,通过利用map数据结构的特性,将链表节点按照其key值进行排序。文章详细解释了输入输出规格,并提供了一个样例输入输出,最后给出了完整的C++代码实现。

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 (<10​5​​) 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 −1.

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 [−10​5​​,10​5​​], 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

题意:按照链表的数据域排序后输出链表。

思路:因为key值是唯一的,可以利用map自带的排序功能,map的key保存链表的key,map的value保存链表的address,这样直接输出就好了,注意输出的格式为5位字符~

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

int main(){

    int n, start;
    cin >> n >> start;
    int data[100010] = {0};
    int order[100010] = {0};
    map<int, int> m;
    for(int i = 0; i < n; i++){
        int add, key, next;
        scanf("%d %d %d", &add, &key, &next);
        data[add] = key;
        order[add] = next;
        
    }
    for(int i = start; i != -1; i = order[i]){
        m[data[i]] = i;
    }
    
    map<int, int>::iterator it = m.begin();
    if((m.size()) == 0){
        printf("0 -1\n");
        return 0;
    }else
    {
        printf("%d %05d\n", int(m.size()), it -> second);
    }
    
    
    while (it != m.end())
    {
        printf("%05d %d", it -> second, it -> first);
        it++;
        if(it != m.end()){
            printf(" %05d\n", it -> second);
        }else
        {
            printf(" -1\n");
        }
        
        
    }
    


    return 0;



}

 

### C++ STL List Usage and Examples In the context of C++, `std::list` is a container that supports constant time insertions and deletions from anywhere within the sequence. This makes it particularly useful when frequent insertion or deletion operations are required. #### Declaration and Initialization A list can be declared using different methods: ```cpp #include <iostream> #include <list> int main() { std::list<int> my_list = {1, 2, 3}; // Initialize with values // Add elements to the end of the list my_list.push_back(4); // Print all elements in the list for (auto& elem : my_list) { std::cout << elem << " "; } } ``` #### Common Operations on Lists Adding an element at any position involves specifying where exactly one wants to add this new item: ```cpp // Inserting before specific iterator location my_list.insert(my_list.begin(), 0); // Inserts '0' as first element ``` Removing items also has multiple options available depending upon what needs removal – either by value or through iterators pointing towards those positions which need erasing: ```cpp // Remove all occurrences of a particular value my_list.remove(2); // Erase single occurrence pointed by iterator auto pos = my_list.begin(); pos++; // Move past beginning my_list.erase(pos); ``` Checking whether two lists contain identical sequences without considering their order might involve sorting both collections beforehand followed by comparison via equality operator (`==`) provided they support such operation directly out-of-the-box like so: ```cpp if (sorted_copy_of_my_list == another_sorted_list) { // Both have same contents regardless of original ordering. } ``` For more advanced manipulations including merging sorted ranges into destination containers while preserving relative orders among equal keys during merge process etc., refer standard library documentation regarding algorithms operating over bidirectional iterators since these apply equally well here too due to nature how linked structures internally manage memory allocation/deallocation patterns under hood[^1].
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值