您的位置:首页 > 财经 > 产业 > 深圳app定制开发报价单_东家乐装修公司怎么样_百度网盘电脑版官网_专门做排行榜的软件

深圳app定制开发报价单_东家乐装修公司怎么样_百度网盘电脑版官网_专门做排行榜的软件

2024/11/16 9:15:04 来源:https://blog.csdn.net/flyidj/article/details/142465444  浏览:    关键词:深圳app定制开发报价单_东家乐装修公司怎么样_百度网盘电脑版官网_专门做排行榜的软件
深圳app定制开发报价单_东家乐装修公司怎么样_百度网盘电脑版官网_专门做排行榜的软件

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 (<105) 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 [−105,105], 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

 solution:
 

#include<bits/stdc++.h>
using namespace std;
const int maxn=1e5+5;
int main()
{int start;int k;cin>>k>>start;int a[maxn]={0};int next[maxn]={0};for(int i=0;i<k;i++){int tmp;cin>>tmp>>a[tmp]>>next[tmp];}int n=0;vector<pair<int,int> >ans;while(start!=-1){ans.push_back({start,a[start]});n++;start=next[start];}sort(ans.begin(),ans.end(),[](pair<int,int>a,pair<int,int>b){return a.second<b.second;});if(!n)//测试点4特判{cout<<0<<' '<<-1<<endl;return 0;}printf("%d %05d\n",n,ans[0].first);for(int i=0;i<n-1;i++){printf("%05d %d %05d\n",ans[i].first,ans[i].second,ans[i+1].first);}printf("%05d %d -1\n",ans[n-1].first,ans[n-1].second);
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com