链表和并 (思路应该明确) 摘要:解题思路:循环输入的次数是n+m的和然后吧a和b一起加入到lis列表里面记得a,b要用括号括起来然后用两个for循环输出注意事项:记得a,b要用括号括起来最后加一个换行就行了参考代码:n,m = ma…… 题解列表 2022年05月17日 0 点赞 6 评论 313 浏览 评分:9.5
1052: [编程入门]链表合并 摘要:解题思路:注意事项:#include<stdio.h> int main() { int n,m,i,j; scanf("%d %d",&n,&m); int inf[n+m][2]; f…… 题解列表 2022年06月20日 0 点赞 0 评论 59 浏览 评分:0.0
题解 1052: [编程入门]链表合并(C语言) 摘要:我还是个新手,链表尤其头疼,自己写出这个题解而且一遍过我真的太开心了注意事项:理清思路,一步一步来参考代码:#include<stdio.h> #include <malloc.h> typ…… 题解列表 2022年06月21日 0 点赞 0 评论 314 浏览 评分:9.9
链表合并,1052 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Student{ int num; int score;};struct Node{ …… 题解列表 2022年06月21日 0 点赞 0 评论 164 浏览 评分:0.0
链表合并,1052 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Student{ int num; int score;};struct Node{ …… 题解列表 2022年06月23日 0 点赞 0 评论 83 浏览 评分:0.0
SinzoL--题解 1052: [编程入门]链表合并 摘要:####啊啊啊啊啊啊啊!!!好难啊!本辣鸡觉得链表好难(虽然还是参考了许多大佬的做法,写了出来) ####和许多人的做法类似,分四步:创建链表,合并链表,对单个链表排序,打印链表 ####粘代码:…… 题解列表 2022年07月08日 0 点赞 0 评论 267 浏览 评分:9.9
[编程入门]链表合并,小白代码 摘要:解题思路:手搓链表,首先输入a,b链表,初始化一个together链表备用。写一个函数minid找到链表中id最小的并返回该结点地址,考察a,b两链表中id最小者,并加入together链表同时修改该…… 题解列表 2022年07月18日 0 点赞 0 评论 202 浏览 评分:9.9
1052: [编程入门]链表合并 摘要:解题思路:注意事项:结构体使用,结构体指针参考代码:#include<stdio.h> #include<malloc.h> typedef struct Node { int sn…… 题解列表 2022年08月08日 0 点赞 0 评论 96 浏览 评分:0.0
老哥们点评点评 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct s{ int id; int grade; stru…… 题解列表 2022年08月27日 0 点赞 0 评论 216 浏览 评分:9.9
尾插法创建链表、选择排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <malloc.h> typedef struct student { int id; int …… 题解列表 2022年08月28日 0 点赞 0 评论 161 浏览 评分:9.9