当前位置:   article > 正文

L2-022 重排链表 【STL】_l2-2 重排链表

l2-2 重排链表

题目传送门

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

输入格式:

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

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

Address Data Next

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

输出格式:

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

输入样例:

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

输出样例:

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

解题思路:用m1 [i] 标记 i 结点的右相连结点,m2 [i] 标记 i 结点的左相连接点,s标记原链表的首节点,e标记原链表的尾结点,坑点是要考虑出现不止一个-1 的情况。

AC代码:

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <cmath>
  5. #include <vector>
  6. #include <string>
  7. #include <algorithm>
  8. #include <queue>
  9. #include <set>
  10. #include <map>
  11. using namespace std;
  12. typedef long long ll;
  13. const int N=1e5+7;
  14. map <int,int> m1,m2;
  15. int s,e,n;
  16. int num[N];
  17. int main()
  18. {
  19. int x,y,z;
  20. cin>>s>>n;
  21. int e=-1;
  22. for(int i=0;i<n;i++){
  23. cin>>x>>y>>z;
  24. m1[x]=z;
  25. m2[z]=x;
  26. num[x]=y;
  27. if(z==-1&&e==-1) e=x;
  28. }
  29. int i=0;
  30. while(true){
  31. if(i%2){
  32. printf("%05d %d %05d\n",s,num[s],e);
  33. s=m1[s];
  34. }
  35. else{
  36. printf("%05d %d %05d\n",e,num[e],s);
  37. e=m2[e];
  38. }
  39. if(s==e){
  40. if(i%2) printf("%05d %d -1\n",s,num[s]);
  41. else printf("%05d %d -1\n",e,num[e]);
  42. break;
  43. }
  44. i++;
  45. }
  46. return 0;
  47. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/226824
推荐阅读
相关标签
  

闽ICP备14008679号