1052: [编程入门]链表合并,用字典来解决 摘要:解题思路:注意事项:参考代码e,f = map(int,input().split())dict={}list = []while True: try: a,b=map(int,i…… 题解列表 2021年12月04日 0 点赞 0 评论 148 浏览 评分:0.0
链表合并+排列 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ typedef struct Link_List { i…… 题解列表 2022年10月03日 0 点赞 0 评论 102 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct student{ int id; int score; struct …… 题解列表 2018年10月11日 0 点赞 0 评论 322 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h> typedef struct students{ int num ; int score; …… 题解列表 2018年02月05日 0 点赞 0 评论 1053 浏览 评分:0.0
1052: [编程入门]链表合并 python 摘要:解题思路:用列表存学号,用字典存学号-成绩键值对,只对列表排序即可注意事项:无参考代码:a,b = map(int,input().split()) i = 0 dictlinshi = {} …… 题解列表 2021年04月25日 0 点赞 0 评论 202 浏览 评分:0.0
[编程入门]链表合并-题解(C++代码)极简代码,20行不到。 摘要:```cpp #include #include using namespace std; int main(){ int a,b,fir,sec; cin >> a >> b; …… 题解列表 2019年12月11日 0 点赞 0 评论 501 浏览 评分:0.0
1052: [编程入门]链表合并 摘要:解题思路:注意事项:结构体使用,结构体指针参考代码:#include<stdio.h> #include<malloc.h> typedef struct Node { int sn…… 题解列表 2022年08月08日 0 点赞 0 评论 96 浏览 评分:0.0
为什么我写的这么简单1 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<algorithm>using namespace std;int a[1111],b[1111],c[1111],d…… 题解列表 2023年11月24日 0 点赞 0 评论 103 浏览 评分:0.0
链表合并 题解(很简单的,懒人专用) 摘要:解题思路:这题我没有用链表做,我感觉太麻烦了。呵呵—用了结构体,下面是程序。希望大家多多支持!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace st…… 题解列表 2022年05月07日 0 点赞 0 评论 198 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.8 (C语言描述—选择排序) 摘要:#include<stdio.h> #include <stdlib.h> typedef struct CStudent { int m_num; float m_score; …… 题解列表 2018年12月19日 1 点赞 0 评论 445 浏览 评分:0.0