为什么我写的这么简单1 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<algorithm>using namespace std;int a[1111],b[1111],c[1111],d…… 题解列表 2023年11月24日 0 点赞 0 评论 219 浏览 评分:0.0
双向链表解题,依次输出 摘要:```c #include #include #include typedef struct SList { int num; int grade; struct SList*…… 题解列表 2023年11月23日 0 点赞 0 评论 190 浏览 评分:0.0
链表合并c++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;typedef int Status;typedef struct lnode{ int…… 题解列表 2023年11月13日 0 点赞 0 评论 343 浏览 评分:9.9
[编程入门]链表合并(先用数组输入的数排好序,再传入链表,这样就是合并两个有序的链表,或者定义一个函数给链表节点排序) 摘要:解题思路:注意事项:参考代码:使用结构体数组先将输入的数排好序:#include<stdio.h> #include<malloc.h> #include<stdbool.h> struct N…… 题解列表 2023年11月09日 0 点赞 0 评论 131 浏览 评分:0.0
链表合并问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>// 定义链表结构体typedef struct node { int id; …… 题解列表 2023年10月29日 0 点赞 0 评论 212 浏览 评分:9.9
足够简洁,链表合并排序输出 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct r{ int xue; int score; struct r *ne…… 题解列表 2023年10月24日 0 点赞 0 评论 169 浏览 评分:0.0
STL list实现合并 ,排序;insert实现合并 摘要:```cpp #include #include using namespace std; struct node{ //定义结构体,用来存储数据 int id; int score;…… 题解列表 2023年10月11日 0 点赞 0 评论 411 浏览 评分:0.0
快且蠢(有点废空间) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<list> using namespace std; int main() { list<int>…… 题解列表 2023年09月23日 0 点赞 0 评论 232 浏览 评分:9.9
两个数组解决 摘要:解题思路:两个数组+冒泡排序 ```cpp #include using namespace std; int main() { int i,n,m; cin>>…… 题解列表 2023年09月21日 0 点赞 0 评论 213 浏览 评分:0.0
链表合并 C语言 摘要:解题思路:注意事项:这只是给我自己一个备忘录参考代码:#include<stdio.h>#include<malloc.h>typedef struct student{ int num; …… 题解列表 2023年09月19日 0 点赞 0 评论 169 浏览 评分:0.0