首页 > 代码库 > PAT甲题题解-1052. Linked List Sorting (25)-排序
PAT甲题题解-1052. Linked List Sorting (25)-排序
三个注意点:
1.给出的n个节点并不一定都在链表中
2.最后一组样例首地址即为-1
3.输出地址的时候一直忘记前面要补0。。。
#include <iostream> #include <algorithm> #include <cstdio> #include <string.h> using namespace std; const int maxn=100000+5; struct Node{ int addr; int val; int to; bool operator<(const Node tmp)const{ return val<tmp.val; } }linked[maxn],node[maxn]; int main() { int n,first; int a,b,c; scanf("%d %d",&n,&first); for(int i=0;i<n;i++){ scanf("%d %d %d",&a,&b,&c); linked[a].addr=a; linked[a].val=b; linked[a].to=c; } int cnt=0; while(first!=-1){ node[cnt].addr=linked[first].addr; node[cnt].val=linked[first].val; node[cnt].to=linked[first].to; cnt++; first=linked[first].to; } sort(node,node+cnt); if(cnt==0){ printf("0 -1\n"); //最后一个样例有首地址为-1的情况。。。 return 0; } printf("%d %05d\n",cnt,node[0].addr); for(int i=0;i<cnt;i++){ printf("%05d %d ",node[i].addr,node[i].val); if(i==cnt-1) printf("-1\n"); else printf("%05d\n",node[i+1].addr); } return 0; }
PAT甲题题解-1052. Linked List Sorting (25)-排序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。