新手都能看懂的链表合并 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); int a[n+m][2]; …… 题解列表 2023年01月12日 0 点赞 0 评论 171 浏览 评分:0.0
链表合并(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>typedef struct Stu{ int id; int score; …… 题解列表 2022年12月13日 0 点赞 0 评论 180 浏览 评分:0.0
编写题解 1052: [编程入门]链表合并 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; typedef struct Node{ int n; int g…… 题解列表 2022年12月07日 0 点赞 0 评论 234 浏览 评分:9.9
1052: [编程入门]链表合并 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<stdlib.h> typedef struct student { int…… 题解列表 2022年11月29日 0 点赞 0 评论 191 浏览 评分:0.0
C++结构体链表合并常规解法 摘要:解题思路:创建链表,合并链表,排序,输出注意事项:参考代码:#include<iostream>using namespace std;struct student{ int id, sum; stu…… 题解列表 2022年11月25日 0 点赞 0 评论 232 浏览 评分:0.0
废话不多说,看代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m,i,j; scanf("%d%d",&n,&m); int a[n+m],b…… 题解列表 2022年11月22日 0 点赞 0 评论 247 浏览 评分:9.9
Monkey————链表合并 摘要: //用了冒泡排序法和选择排序法,提交发现选择排序法通过快一点,具体原因母鸡 //遗憾的是两个排序法我嫌麻烦没分装成函数,见谅 #includ…… 题解列表 2022年10月29日 0 点赞 0 评论 431 浏览 评分:9.9
萌新也能轻松AC之链表合并 摘要:#不用字典,仅用列表操作完成 ```python N,M = map(int,input().split()) numbers = [] 学号列表1 numbers1 = [] 排序后的学号列…… 题解列表 2022年10月08日 0 点赞 0 评论 270 浏览 评分:6.0
1052-链表合并 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;typedef struct Node{ int num; int grade…… 题解列表 2022年10月06日 0 点赞 0 评论 153 浏览 评分:0.0
链表合并+排列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ typedef struct Link_List { i…… 题解列表 2022年10月03日 0 点赞 0 评论 188 浏览 评分:0.0