蓝桥杯算法训练VIP-链表数据求和操作题解(java) 摘要:**思路:** 用的是自建类的方式来模拟链表添加,创建,链表求和写在main函数里面 **代码:** ```java import java.util.Scanner; //List…… 题解列表 2022年01月17日 0 点赞 0 评论 186 浏览 评分:0.0
Hifipsysta-1585-蓝桥杯算法训练VIP-链表数据求和操作(C++代码)真链表数据域求和 摘要:```cpp #include using namespace std; const int MAXN = 100; struct node{ int real; in…… 题解列表 2022年02月09日 0 点赞 0 评论 158 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> typedef struct plural{ //定义结构体变量 int rea…… 题解列表 2022年03月02日 0 点赞 0 评论 215 浏览 评分:9.9
循环链表解法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>using namespace std;int main(){ typedef st…… 题解列表 2022年03月12日 0 点赞 0 评论 118 浏览 评分:0.0
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct Node { int data; //实部 int data1; …… 题解列表 2022年03月27日 0 点赞 0 评论 128 浏览 评分:0.0
题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <malloc.h> typedef struct node { int real; …… 题解列表 2022年04月10日 0 点赞 0 评论 159 浏览 评分:0.0
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[10],b[10]; in…… 题解列表 2022年05月08日 0 点赞 0 评论 106 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作 题解(c++懵逼题目) 摘要:解题思路:题目其实看得半懂半蒙!呵呵!我才不管那么多,直接用结构体完事!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;struct lb…… 题解列表 2022年05月16日 0 点赞 0 评论 145 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作(未用链表来做) 摘要:解题思路:1.我是用两个数组来进行计算的,比较简单。(仅适用数组。)参考代码:#include<stdio.h>int main(){ int a[10],b[10],i; int a…… 题解列表 2022年07月14日 0 点赞 0 评论 88 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作(记录在案) 摘要:#include <stdio.h> #include <malloc.h> typedef struct plural { int real; int imag; …… 题解列表 2022年07月19日 0 点赞 0 评论 77 浏览 评分:0.0