啊啊啊啊啊啊啊!!!好难啊!本辣鸡觉得链表好难(虽然还是参考了许多大佬的做法,写了出来)

和许多人的做法类似,分四步:创建链表,合并链表,对单个链表排序,打印链表

粘代码:

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. struct note{
  4. int id;
  5. int score;
  6. note * next;
  7. };//其实我不知道为什么有的人会写上*node, Node,后面再用node声明函数的返还类型,我是让函数返还结构指针,欢迎指教QWQ
  8. note * cre(int a);//创建链表
  9. void prin(note * a);//打印链表
  10. note * tog(note * a,note * b);//合并链表
  11. void my_sort(note * a,int b,int c);//对单个链表排序
  12. int main()
  13. {
  14. note * l1,*l2,*l3;
  15. int m,n;
  16. cin>>m>>n;
  17. l1=cre(m);
  18. l2=cre(n);
  19. l3=tog(l1,l2);
  20. my_sort(l3,m,n);
  21. prin(l3);//我把函数的各个功能分开实现了
  22. return 0;
  23. }
  24. note * cre(int a)
  25. {
  26. note * mj,* mo,* he;
  27. he=(note *)malloc(sizeof(note));
  28. he->next=NULL;
  29. mo=he;//he作为头指针,地址不变
  30. for(int i=1;i<=a;i++)
  31. {
  32. mj=(note *)malloc(sizeof(note));
  33. mj->next=NULL;
  34. cin>>mj->id>>mj->score;
  35. mo->next=mj;
  36. mo=mj;//插入新值
  37. }
  38. return he;//返还头指针
  39. }
  40. note * tog (note * a, note *b)
  41. {
  42. note * tmp = a;
  43. while(tmp->next!=NULL)
  44. tmp=tmp->next;//找到a的尾巴,将其与b的头部衔接起来
  45. tmp->next=b->next;
  46. return a;//这时候a即为l1,似乎与l3相同了,其实l3是可以不要的,就是说可以不返回指针的
  47. }
  48. void my_sort(note * a,int b , int c)
  49. {
  50. note * p;
  51. int tmp1,tmp2;
  52. for(int i=1;i<b+c;i++)
  53. {
  54. p=a+2;
  55. while(p->next!=NULL)
  56. {
  57. if(p->id>p->next->id){
  58. swap(p->id,p->next->id);
  59. swap(p->score,p->next->score);
  60. }
  61. p+=2;//与p=p->next同义,效果一样如果这样写不规范,欢迎指教QWQ
  62. }
  63. }//冒泡排序
  64. }
  65. void prin( note * a)
  66. {
  67. note * b=a->next;
  68. while(b!=NULL){
  69. cout<<b->id<<" "<<b->score<<endl;
  70. b=b->next;
  71. }//打印
  72. }

新手写题解,欢迎吐槽

点赞(0)
 

9.9 分

1 人评分

 

C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:

一点编程也不会写的:零基础C语言学练课程

解决困扰你多年的C语言疑难杂症特性的C语言进阶课程

从零到写出一个爬虫的Python编程课程

只会语法写不出代码?手把手带你写100个编程真题的编程百练课程

信息学奥赛或C++选手的 必学C++课程

蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程

手把手讲解近五年真题的蓝桥杯辅导课程

评论列表 共有 0 条评论

暂无评论