PAT A1052 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 (<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
 
 1 #include <stdio.h>
 2 #include <algorithm>
 3 #include <vector>
 4 using namespace std;
 5 const int maxn = 100010;
 6 struct node{
 7   int add,data,next;
 8 }nodes[maxn];
 9 bool cmp(node n1,node n2){
10   return n1.data<n2.data;
11 }
12 int main(){
13   vector<node> v;
14   int n,st;
15   scanf("%d %d",&n,&st);
16   for(int i=0;i<n;i++){
17     int r,v,ne;
18     scanf("%d %d %d",&r,&v,&ne);
19     nodes[r].add = r;
20     nodes[r].data = v;
21     nodes[r].next = ne;
22   }
23   while(st!=-1){
24     v.push_back(nodes[st]);
25     st = nodes[st].next;
26   }
27   sort(v.begin(),v.end(),cmp);
28   if(v.size()==0){
29     printf("0 -1\n");
30     return 0;
31   }
32   printf("%d %05d\n",v.size(),v[0].add);
33   for(int i=0;i<v.size()-1;i++){
34     printf("%05d %d %05d\n",v[i].add,v[i].data,v[i+1].add);
35   }
36   printf("%05d %d -1\n",v[v.size()-1].add,v[v.size()-1].data);
37 }
View Code

注意点:又是一道链表题,可以说是很简单了,一开始忘记写scanf了,一直报内存超限,还以为是一道要用神奇方法解决的题目。要注意的就是输出0 -1的情况,链表为空。

猜你喜欢

转载自www.cnblogs.com/tccbj/p/10456287.html