编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct Node { int data; //实部 int data1; …… 题解列表 2022年03月27日 0 点赞 0 评论 155 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct Complex{ int imag; int real…… 题解列表 2023年01月18日 0 点赞 0 评论 125 浏览 评分:0.0
1585: 蓝桥杯算法训练VIP-链表数据求和操作(C语言) 摘要:解题思路:利用for循环创建链表并同时执行一次相加的操作,即边建立链表边求和注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Num{ in…… 题解列表 2022年12月21日 0 点赞 0 评论 100 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作(记录在案) 摘要:#include <stdio.h> #include <malloc.h> typedef struct plural { int real; int imag; …… 题解列表 2022年07月19日 0 点赞 0 评论 91 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作(未用链表来做) 摘要:解题思路:1.我是用两个数组来进行计算的,比较简单。(仅适用数组。)参考代码:#include<stdio.h>int main(){ int a[10],b[10],i; int a…… 题解列表 2022年07月14日 0 点赞 0 评论 111 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 题解(c++懵逼题目) 摘要:解题思路:题目其实看得半懂半蒙!呵呵!我才不管那么多,直接用结构体完事!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;struct lb…… 题解列表 2022年05月16日 0 点赞 0 评论 167 浏览 评分:0.0
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[10],b[10]; in…… 题解列表 2022年05月08日 0 点赞 0 评论 127 浏览 评分:0.0
题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <malloc.h> typedef struct node { int real; …… 题解列表 2022年04月10日 0 点赞 0 评论 174 浏览 评分:0.0
python 链表数据求和 摘要:A=0B=0for i in range(10): a,b=map(int,input().split()) A+=a B+=bprint(str(A)+"+"+str(B)+"i"…… 题解列表 2023年03月03日 0 点赞 0 评论 150 浏览 评分:0.0
循环链表解法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>using namespace std;int main(){ typedef st…… 题解列表 2022年03月12日 0 点赞 0 评论 140 浏览 评分:0.0