1674: 数据结构-有序线性表的有序合并 摘要:解题思路:注意事项:可能出现的错误:【格式错误】当输入m和n都是0时,应输出一个空行而不是 什么都不输出。【答案错误】①是否注意到了多组输入?②当输入m和n都是0时,此时线性表c没有元素,应该输出一个…… 题解列表 2021年04月26日 0 点赞 0 评论 480 浏览 评分:9.9
题目 1674: 数据结构-有序线性表的有序合并 (单链表+顺序表+STL 巧解)(50%格式错误) 摘要:`注意事项: C空表时,不输出元素,但是要输出换行 ` STL sort ```cpp #include #include using namespace std; #define …… 题解列表 2021年06月10日 0 点赞 0 评论 415 浏览 评分:9.9
1674: 数据结构-有序线性表的有序合并-C语言 摘要:```c //有序线性表的有序合并 //思路是合并后对合并后的链表进行排序 #include #include typedef struct node { int data;…… 题解列表 2021年12月29日 0 点赞 0 评论 505 浏览 评分:9.9
stl,你值得拥有 摘要:解题思路:使用两个容器进行合并,算法什么的直接用就好了,注意包含头文件注意事项:参考代码:#include <iostream>#include <vector>#include <algorithm…… 题解列表 2022年01月10日 0 点赞 0 评论 147 浏览 评分:0.0
两个链表合并C语言 摘要:解题思路:phead1 phead2来接受两个链表,phead3来合并注意事项:参考代码:#include<stdio.h> #include<stdlib.h> struct student …… 题解列表 2022年02月05日 0 点赞 0 评论 276 浏览 评分:9.9
数据结构-有序线性表的有序合并(栈结构C++) 摘要: #include using namespace std; int main() { int n,m; while(cin>>…… 题解列表 2022年02月27日 0 点赞 0 评论 278 浏览 评分:0.0
1674: 数据结构-有序线性表的有序合并 摘要: #include//万能头 using namespace std; inline int read(){//快读 int x=0,f=1; c…… 题解列表 2022年09月18日 0 点赞 0 评论 366 浏览 评分:9.9
线性表的有序合并之【直接在head1的后面接上head2】(与我的第一篇文章雷同) 摘要: #include #include struct linklist { int data; struct linklist…… 题解列表 2022年10月15日 0 点赞 0 评论 212 浏览 评分:9.9
两个写法轻松简洁解决 摘要:```c 数组法: #include #include int main() { int La[105], Lb[105], Lc[210]; int m, n; …… 题解列表 2023年02月21日 0 点赞 0 评论 190 浏览 评分:6.0
C语言思路简单,易懂!!! 理解万岁 真的简单!!! 摘要:解题思路: //注意不是一组数据哦!!! 是多种数据呢注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#define len sizeof(num)…… 题解列表 2023年10月22日 0 点赞 0 评论 60 浏览 评分:0.0