PAT - 甲级 - 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 12345
Sample Output:
5 12345
12345 -1 00001
00001 0 11111
11111 100 22222
22222 1000 33333
33333 100000 -1

给定条件:
1.给定n个节点的地址,值,下一个地址
2.给定链表的第一个节点的地址

要求:
1.将这个链表排序后输出

求解:
1.获取这个链表中的所有节点
2.按照节点的值将这些节点排序
3.遍历输出即可

注意:
1.特殊处理该链表为空的情况


#include 
#include 
#include 
using namespace std;

struct Node {
	int ad;
	int val;
	int nextd;
} node[100010];

bool cmp1(Node n1, Node n2) {
	return n1.val < n2.val;
}
vector v;

int ad, val, nextd, n, start;
int main() {

	scanf("%d%d", &n, &start);

	for(int i = 0; i < n; i++) {
		scanf("%d%d%d", &ad, &val, &nextd);
		node[ad].ad = ad;
		node[ad].val = val;
		node[ad].nextd = nextd;
	}

	for(int i = start; i != -1; i = node[i].nextd) {
		v.push_back(node[i]);
	}

	if(v.size() == 0) {
		printf("0 -1\n");
		return 0;
	}
	sort(v.begin(), v.end(), cmp1);

	printf("%d %05d\n",(int)v.size(), v.begin()->ad);

	for(int i = 0; i < v.size()-1; i++) {
		v[i].nextd = v[i+1].ad;
		printf("%05d %d %05d\n", v[i].ad, v[i].val, v[i].nextd);
	}

	v.rbegin()->nextd = -1;
	printf("%05d %d %d\n", v.rbegin()->ad, v.rbegin()->val, v.rbegin()->nextd);
	
	return 0;
}

你可能感兴趣的:(链表,PAT,(Advanced,Level),浙江大学,PAT甲级,链表,1052.,Linked,List,So,Linked,List,Sorting)