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

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

筛选

[编程入门]链表合并

摘要: **核心思想是先将二者合并,再利用插入排序** ## 代码 #include #include typedef struct N……

[编程入门]链表合并

摘要:#include<stdio.h>#include<stdlib.h>typedef struct st { int num; int score; struct st* next;}stu;stu*……

两个数组解决

摘要:解题思路:两个数组+冒泡排序 ```cpp #include using namespace std; int main() { int i,n,m; cin>>……