题解 1052: [编程入门]链表合并

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

为什么我写的这么简单1

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<algorithm>usingnamespacestd;inta[1111],b[1111],……

链表合并c++

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;typedefintStatus;typedefstructlnode{&nb……

链表合并问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>//定义链表结构体typedefstructnode{&nbsp;&……

快且蠢(有点废空间)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<list>using&nbsp;namespace&nbsp;std;int……

两个数组解决

摘要:解题思路:两个数组+冒泡排序```cpp#includeusingnamespacestd;intmain(){inti,n,m;cin>>n>>m;inta[n+m],b[n……

链表合并 C语言

摘要:解题思路:注意事项:这只是给我自己一个备忘录参考代码:#include<stdio.h>#include<malloc.h>typedef&nbsp;struct&am……