主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
我与代码的故事
2024年4月20日 16:31
链表合并 题解:
P1025
回复 0
|
赞 1
|
浏览 660
#include<bits/stdc++.h> using namespace std; vector<int> A; int n, m; int main() { cin >> n; for(int i = 0; i < n; i ++) { int x; cin >> x; A.push_back(x); } cin >> m; for(int i = 0; i < m; i ++) { int x; cin >...
williams
2024年3月26日 12:38
链表合并 题解:c实现
P1025
回复 2
|
赞 0
|
浏览 629
#include <stdio.h> #include <stdbool.h> #include <math.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <time.h> typedef struct LNode{ int data; struct LNode *next; }LNode,*LinkList; void freeList(LinkList l)...
为欢几何
2024年3月24日 16:17
链表合并 题解:0%,不知道哪里有问题,谢谢小伙伴们帮我看看
P1025
回复 2
|
赞 0
|
浏览 712
#include<bits/stdc++.h> using namespace std; struct node{ int n; struct node *next; }; //创建链表 struct node* create(int n,int a[105]){ struct node* head = (struct node*)malloc(sizeof(struct node)); head->next=NULL; &n...
熹微
2024年3月27日 22:28
链表合并 题解:
P1025
回复 0
|
赞 0
|
浏览 500
每日一题 c语言 #include<stdio.h> typedef struct Node{ int num; struct Node *Next; }node; void Meg(node **head,node *L1,node *L2){ node *ptr,*h; ptr = (node *) malloc(sizeof (node)); h = (node *) malloc(sizeof...
1576684866
2024年3月24日 14:50
链表合并 题解:
P1025
回复 0
|
赞 0
|
浏览 650
#include <cstdio> using namespace std; #include <string.h> #include <iostream> #include <stdlib.h> typedef struct node { int element; struct node* next; }node,*Linklist; int main() { //建立两个链表 ...
lingdongyang
2024年3月23日 16:09
链表合并 题解:
P1025
回复 0
|
赞 0
|
浏览 709
尝试不用链表,感觉要简单点 #include<stdio.h> #include<string.h> #include<math.h> int main() { int n1; scanf("%d", &n1); int s1[105]; for (int i = 0; i < n1; i++) { scanf("%d", &s1[i]); } int n2; scanf("%d", &n2); int s2[105]; for (int i = 0; i <...
WRW
2024年3月19日 14:04
链表合并 题解:
P1025
回复 0
|
赞 0
|
浏览 583
#include<stdio.h> #include<malloc.h> #define elemtype int //链表结构体定义 typedef struct linknode { elemtype data; struct linknode* next; }Lnode,*link; //插入算法,采用归并方式,返回值为一个链表头,功能为将L2按顺序插入L1 void Merge(link& L1, link& L2) { &nb...
光明守护神
2024年3月16日 16:19
自己写一个merge(),实现将l2添加到l1
P1025
回复 0
|
赞 0
|
浏览 508
#include<iostream> #include<list> using namespace std; void my_merge(list<int>& l1, list<int> l2) { if (l1.empty()) { l1 = l2; } else if (l2.empty()) { ; } else { auto it1 = l1.begin(); auto it2 = l2.begin(); while (it1 != l1.end(...
光明守护神
2024年3月16日 15:58
c++STL库里有链表合并函数merge()
P1025
回复 0
|
赞 0
|
浏览 641
#include<iostream> #include<list> using namespace std; int main() { list<int> l1; list<int> l2; int a, b, t; cin >> a; for (int i = 0; i < a; i++) { cin >> t; l1.emplace_back(t); } cin >> b; for (int i = 0; i < b; i++...
Cookie‘s AE86
2024年3月14日 11:06
链表合并 题解:奇技淫巧c++ #include<list> sort
P1025
回复 0
|
赞 0
|
浏览 643
#include<bits/stdc++.h> using namespace std; int main() { list<int> li1; list<int> li2; int len1; int len2; int tmp; list<int>::iterator it; //建立链表 cin >> len1; for(int i = 0; i < len1; i++){ cin >&g...
1
2
3
4
题目
链表合并
题解数量
35
发布题解
热门题解
1
合并两个有序的链表因此只需要单个比较插入
2
先建立链表、再合并
3
关键操作写成函数,结果通过
4
链表合并 题解:
5
逻辑性强
6
数组
7
记录
8
链表合并 题解:
9
有序链表合并(注释应该可以理解)
10
合并两有序链表,输出合并结果