PAT

来源:互联网 发布:明道办公软件怎么样 编辑:程序博客网 时间:2024/06/03 16:51

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 0000111111 100 -100001 0 2222233333 100000 1111112345 -1 3333322222 1000 12345
Sample Output:
5 1234512345 -1 0000100001 0 1111111111 100 2222222222 1000 3333333333 100000 -1

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

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

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

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


#include <cstdio>#include <vector>#include <algorithm>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<Node> 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;}