码迷,mamicode.com
首页 > 其他好文 > 详细

天梯 - 重排链表(模拟链表操作)

时间:2020-03-28 18:00:23      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:cin   meta   text   包含   表操作   set   return   rip   space   

 

给定一个单链表 L?1??→L?2??→?→L?n1??→L?n??,请编写程序将链表重新排列为 L?n??→L?1??→L?n1??→L?2??→?。例如:给定L为1→2→3→4→5→6,则输出应该为6→1→5→2→4→3。

输入格式:

每个输入包含1个测试用例。每个测试用例第1行给出第1个结点的地址和结点总个数,即正整数N (≤105)。结点的地址是5位非负整数,NULL地址用−表示。

接下来有N行,每行格式为:

Address Data Next

其中Address是结点地址;Data是该结点保存的数据,为不超过1的正整数;Next是下一结点的地址。题目保证给出的链表上至少有两个结点。

输出格式:

对每个测试用例,顺序输出重排后的结果链表,其上每个结点占一行,格式与输入相同。

输入样例:

00100 6
00000 4 99999
00100 1 12309
68237 6 -1
33218 3 00000
99999 5 68237
12309 2 33218

输出样例:

68237 6 00100
00100 1 99999
99999 5 12309
12309 2 00000
00000 4 33218
33218 3 -1

 

 

 1 #include <bits/stdc++.h>
 2 const int INF=0x3f3f3f3f;
 3 typedef long long LL;
 4 const double eps =1e-8;
 5 const int mod=1e9+7;
 6 const int maxn=1e5+10;
 7 using namespace std;
 8 
 9 struct node
10 {
11     string ad;//地址 
12     int num;//数据 
13     string next;//下一个 
14 }P[maxn];
15 int rk[maxn];//排名为i的节点的序号 
16 string rt;//首地址 
17 int n;
18 int st;//开始的序号 
19 map<string,int> mp;
20 
21 int main()
22 {
23     #ifdef DEBUG
24     freopen("sample.txt","r",stdin);
25     #endif
26     
27     cin>>rt>>n;
28     for(int i=1;i<=n;i++)
29     {
30         cin>>P[i].ad>>P[i].num>>P[i].next;
31         mp[P[i].ad]=i;
32         if(P[i].ad==rt) st=i;
33     }
34     int cnt=0;
35     while(st!=-1)
36     {
37         rk[++cnt]=st;
38         if(P[st].next!="-1") st=mp[P[st].next];
39         else st=-1;
40     }
41     int L=cnt,R=1;
42     for(int i=1;i<=cnt;i++)
43     {
44         if(i%2)
45         {
46             int t=rk[L];
47             if(i!=cnt) cout<<P[t].ad<< <<P[t].num<< <<P[rk[R]].ad<<endl;
48             else cout<<P[t].ad<< <<P[t].num<< <<"-1";
49             L--;
50         }
51         else
52         {
53             int t=rk[R];
54             if(i!=cnt) cout<<P[t].ad<< <<P[t].num<< <<P[rk[L]].ad<<endl;
55             else cout<<P[t].ad<< <<P[t].num<< <<"-1";
56             R++;
57         }
58     }
59     
60     return 0;
61 }

 

 

 

 

 

 

 

 

-

天梯 - 重排链表(模拟链表操作)

标签:cin   meta   text   包含   表操作   set   return   rip   space   

原文地址:https://www.cnblogs.com/jiamian/p/12578735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!