解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h> using namespace std; typedef struct Node{ int n; int g; struct Node *next; }node; node*creat(int n){//创建带头结点的链表 node*head,*p,*s; head=(node*)malloc(sizeof(node)); head->next=NULL; p=head; for(int i=1;i<=n;i++) { s=(node*)malloc(sizeof(node)); s->next=NULL; cin>>s->n>>s->g; p->next=s; p=s; } return head; } node*hebing(node *h1,node*h2){//合并两个链表 node*p; p=h1->next; while(p->next!=NULL) p=p->next; p->next=h2->next; return h1; } void ec(node*a,node*b){//交换两个节点的数据 int temp=a->g; a->g=b->g; b->g=temp; int t=a->n; a->n=b->n; b->n=t; } node*sort(node*h,int n){//利用冒泡排序 node*p,*s; for(int i=1;i<=n-1;i++){ p=h->next,s=p->next; while(s!=NULL){ if(p->n>s->n) ec(p,s); p=s,s=s->next; } } return h; } int main(){ int n,m; node*H,*q,*y; node*H1,*H2; cin>>n>>m; H1=creat(n); H2=creat(m); y=hebing(H1,H2); H=sort(y,m+n); q=H->next; while(q!=NULL) { cout<<q->n<<" "<<q->g<<endl; q=q->next; } }
0.0分
2 人评分
数组输出 (C语言代码)浏览:749 |
简单的a+b (C语言代码)浏览:444 |
1052题解(链表操作)浏览:782 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:1108 |
母牛的故事 (C语言代码)浏览:519 |
C语言训练-百钱百鸡问题 (C语言代码)浏览:684 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:584 |
Manchester- Hello, world!浏览:13280 |
单词替换浏览:1211 |
开心的金明浏览:1810 |