主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
Cookie‘s AE86
2024年3月14日 10:53
链表合并 题解:c++ #include<list>实现
P1025
回复 0
|
赞 0
|
浏览 669
#include<bits/stdc++.h> using namespace std; int main() { list<int> li1; list<int> li2; list<int> li; int len1; int len2; int len; int tmp; //建立链表 cin >> len1; for(int i = 0; i < len1; i++){ cin >> tmp; ...
小王桐学
2024年2月5日 20:12
链表合并 题解:C++题解
P1025
回复 1
|
赞 0
|
浏览 718
#include <stdio.h> #include <stdlib.h> typedef struct node{ int data; struct node *next; }LNode,*LinkList; //初始化链表 void InitList(LinkList &L,int s) { L = (LNode *)malloc(sizeof(LinkList)); L->next = NULL; struct node *p = L->next; while(s > 0) { ...
promising
2024年3月10日 21:03
链表合并 题解:
P1025
回复 4
|
赞 0
|
浏览 599
求助,哪里写的有问题啊,为啥运行出来结果不对 #include<stdio.h> #include<stdlib.h> int main() { typedef struct LNode { int data; struct LNode *next; }LNode; &nbs...
我要上岸!
2024年3月7日 16:29
链表合并 题解:
P1025
回复 0
|
赞 0
|
浏览 700
#include<bits/stdc++.h> using namespace std; typedef struct Node { int num; struct Node* Next; }Node; int main() { Node* head1, *head2; Node* p1, *p2; int n1, n2; ...
1935569240
2024年3月5日 21:08
链表合并 题解:简单
P1025
回复 0
|
赞 0
|
浏览 536
#include<iostream> #include<algorithm> #include<string> using namespace std; struct node { int data; struct node * next; }; struct node* create(int nums[],int n) { struct node *head=NULL,*q; &nbs...
天蓝
2024年3月3日 19:16
链表合并 题解:
P1025
回复 0
|
赞 0
|
浏览 813
#include<stdio.h> #include<stdlib.h> typedef struct node{ int date; struct node *next; }*LinkList,Lnode; LinkList creat(int a[], int n){ int i; Lnode *p; LinkList head = (LinkList...
cideyitanjiu
2024年2月29日 16:43
链表合并 题解:
P1025
回复 0
|
赞 1
|
浏览 602
本题两种方法:1、数组暴力求解。2、链表慢慢计算 #include<stdio.h> #include<stdlib.h> //1、数组暴力求解(非链表套答案) //冒泡排序 void bubbleSort(int arr[],int n){ for(int i = 0;i < n-1;i++){ for(int j = 0; j < n - 1 - i;j++){ &n...
孙某人
2024年1月18日 19:23
链表合并 题解:跪求大佬帮忙看看
P1025
回复 0
|
赞 0
|
浏览 630
#include<iostream> using namespace std; int main(){ int n=0; struct node{ int data; struct node *next; }; cin >> n; node *a=new node; a->next=NULL; node *b=a; for(int i=0;i<n;i++){ cin >> a->data; if(i==n-1) break; else{ a->...
孙某人
2024年1月18日 13:35
链表合并 题解:易错点:先判断是否为空
P1025
回复 2
|
赞 0
|
浏览 559
#include<iostream> using namespace std; int main(){ int n=0; struct node{ int data; struct node *next; }; cin >> n; node *a=new node; a->next=NULL; node *b=a; for(int i=0;i<n;i++){ cin >> a->data; if(i==n-1) break; else{ a->...
18937485169
2023年4月28日 14:16
数组
P1025
回复 0
|
赞 1
|
浏览 1.0k
#include<bits/stdc++.h> using namespace std; #define rep(i,s,e) for(int i=s;i<e;i++) #define per(i,s,e) for(int i=s;i>e;i--) int main(){ int n,x; vector<int> a; cin>>n; rep(i,0,n){ &n...
1
2
3
4
题目
链表合并
题解数量
35
发布题解
热门题解
1
合并两个有序的链表因此只需要单个比较插入
2
先建立链表、再合并
3
关键操作写成函数,结果通过
4
链表合并 题解:
5
逻辑性强
6
数组
7
记录
8
链表合并 题解:
9
有序链表合并(注释应该可以理解)
10
合并两有序链表,输出合并结果