蓝桥杯算法训练VIP-链表数据求和操作 题解(c++懵逼题目) 摘要:解题思路:题目其实看得半懂半蒙!呵呵!我才不管那么多,直接用结构体完事!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;struct lb…… 题解列表 2022年05月16日 0 点赞 0 评论 145 浏览 评分:0.0
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a[10],b[10]; in…… 题解列表 2022年05月08日 0 点赞 0 评论 105 浏览 评分: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-链表数据求和操作 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct Node { int data; //实部 int data1; …… 题解列表 2022年03月27日 0 点赞 0 评论 128 浏览 评分:0.0
循环链表解法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>using namespace std;int main(){ typedef st…… 题解列表 2022年03月12日 0 点赞 0 评论 117 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作(c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> typedef struct plural{ //定义结构体变量 int rea…… 题解列表 2022年03月02日 0 点赞 0 评论 214 浏览 评分:9.9
Hifipsysta-1585-蓝桥杯算法训练VIP-链表数据求和操作(C++代码)真链表数据域求和 摘要:```cpp #include using namespace std; const int MAXN = 100; struct node{ int real; in…… 题解列表 2022年02月09日 0 点赞 0 评论 157 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作题解(java) 摘要:**思路:** 用的是自建类的方式来模拟链表添加,创建,链表求和写在main函数里面 **代码:** ```java import java.util.Scanner; //List…… 题解列表 2022年01月17日 0 点赞 0 评论 185 浏览 评分:0.0
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:s=c=0 while True: try: a,b=map(int,input().split()) s += a c += b excep…… 题解列表 2021年12月29日 0 点赞 0 评论 351 浏览 评分:9.9
1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:无头结点的单链表,只带尾插函数。#include<bits/stdc++.h> using namespace std; struct node{ double shi,xu; …… 题解列表 2021年12月19日 0 点赞 0 评论 186 浏览 评分:9.0