编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[10],b[10]; in…… 题解列表 2022年05月08日 0 点赞 0 评论 127 浏览 评分:0.0
链表数据求和操作 摘要:# 链表数据求和操作 ```c++ #include #include #include #include using namespace std; // 定义链表节点结构 …… 题解列表 2024年12月06日 1 点赞 0 评论 275 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 简单 明了!!! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ int a1[11],a2[11],c1=…… 题解列表 2024年12月01日 0 点赞 0 评论 140 浏览 评分:0.0
结构体实现链表,遍历求和 #1585: 蓝桥杯算法训练VIP-链表数据求和操作 (C++) 摘要:``` #include #include int res1, res2; typedef struct lNode { int num1, num2; struct lN…… 题解列表 2024年11月23日 0 点赞 0 评论 107 浏览 评分:0.0
链表的创建 摘要:#include <bits/stdc++.h> #define debuga(v, i) cout << #v << "[" << i << "]" << " = " << v 题解列表 2024年11月16日 0 点赞 0 评论 50 浏览 评分:0.0
1585:链表操作 摘要:```cpp #include using namespace std; typedef struct node { int shibu; int xubu; node* n…… 题解列表 2024年10月05日 0 点赞 0 评论 77 浏览 评分:0.0
太经典了,链表的经典操作 链表数据求和操作 摘要:解题思路:还是前面讲的链表的经典操作注意事项:链表的使用,注意删除节点参考代码:#includeusing namespace std; typedef struct ListPlural{ …… 题解列表 2024年07月29日 0 点赞 0 评论 104 浏览 评分:0.0
第一次用pair数对 摘要:#include<bits/stdc++.h> using namespace std; pair<int,int>a[10]; int main() { int sum1=0,sum2=…… 题解列表 2024年07月29日 0 点赞 0 评论 89 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct Complex{ int imag; int real…… 题解列表 2023年01月18日 0 点赞 0 评论 125 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 题解(c++懵逼题目) 摘要:解题思路:题目其实看得半懂半蒙!呵呵!我才不管那么多,直接用结构体完事!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;struct lb…… 题解列表 2022年05月16日 0 点赞 0 评论 167 浏览 评分:0.0