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 (< 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 12345Sample Output:
5 12345 12345 -1 00001 00001 0 11111 11111 100 22222 22222 1000 33333 33333 100000 -1
注意点:最后的链表可能是空的
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <stack>
using namespace std;
struct node
{
int data;
int add;
int next;
node()
{
add=-1;
next=-1;
}
};
node cube[100005];
bool cmp(node a,node b)
{
return a.data<b.data;
}
int main()
{
//freopen("in.txt","r",stdin);
int head,N;
scanf("%d %d",&N,&head);
for(int i=0;i<N;i++)
{
int t1,tdata,t2;
scanf("%d %d %d",&t1,&tdata,&t2);
cube[t1].add=t1;
cube[t1].data=tdata;
cube[t1].next=t2;
}
vector<node> v;
int p=head;
while(p!=-1&&cube[p].add!=-1)
{
v.push_back(cube[p]);
p=cube[p].next;
}
sort(v.begin(),v.end(),cmp);
if(v.size()==0)
{
printf("0 -1\n");
return 0;
}
printf("%d %05d\n",v.size(),v[0].add);
for(int i=0;i<v.size();i++)
{
if(i!=v.size()-1)
printf("%05d %d %05d\n",v[i].add,v[i].data,v[i+1].add);
else
printf("%05d %d -1\n",v[i].add,v[i].data);
}
return 0;
}

本文介绍了一种链表排序的方法,通过读取链表节点并按照键值进行排序,最终输出排序后的链表结构。涉及链表操作、结构体定义及排序算法的应用。
543

被折叠的 条评论
为什么被折叠?



