PAT(链表)——1052. Linked List Sorting (25)-PAT甲级真题

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

题目大意:

链表中的节点按照value排序。

题目解析:

排除掉不在链表的节点,排序就行了。

具体代码:

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
#define MAXN 100005
struct node{
	int address;
	int value;
	int nextaddress;
	int flag;
}A[MAXN];
bool cmp(node a,node b){
	if(a.flag!=b.flag)
		return a.flag>b.flag;
	else 
		return a.value<b.value;
}
int main()
{
    int n,start;
    scanf("%d%d",&n,&start);
	for(int i=0;i<n;i++){
		int pre,data,post;
		scanf("%d%d%d",&pre,&data,&post);
		A[pre]={pre,data,post,0};
	}
	int k=0;
	while(start!=-1){
		k++;
		A[start].flag=1;
		start=A[start].nextaddress;
	}
	sort(A,A+100005,cmp);
	if(k==0){
		printf("0 -1");
		return 0;
	}
	printf("%d %05d\n",k,A[0].address);
	for(int i=0;i<k;i++){
		if(i!=k-1){
			printf("%05d %d %05d\n",A[i].address,A[i].value,A[i+1].address);
		}else{
			printf("%05d %d -1\n",A[i].address,A[i].value);
		}
	}
    return 0;
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
07-08 12:05
俺不中了,BOSS遇到了一个hr,我觉得我咨询的问题都很正常吧,然后直接就被拒绝了???
恶龙战士:你问的太多了,要不就整理成一段话直接问他,一个一个问不太好
点赞 评论 收藏
分享
05-30 12:03
山西大学 C++
offer来了我跪着...:不是骗子,等到测评那一步就知道为啥这么高工资了
点赞 评论 收藏
分享
风中翠竹:真的真的真的没有kpi。。。面试官是没有任何kpi的,捞是真的想试试看这个行不行,碰碰运气,或者是面试官比较闲现在,没事捞个人看看。kpi算HR那边,但是只有你入职了,kpi才作数,面试是没有的。
双非有机会进大厂吗
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-10 13:54
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务