暴力解决法(通俗易懂) 摘要:解题思路:没有用链表 就直接干上去注意事项:参考代码:#include<stdio.h>int main(){ int a[20]; int i; for(i=0;i<20;i++) { scanf…… 题解列表 2021年03月24日 0 点赞 0 评论 267 浏览 评分:0.0
链表数据求和 摘要:解题思路:通过二维数组进行实现注意事项:分别求和参考代码:import java.util.Scanner;public class Main{ public static void main(…… 题解列表 2021年07月16日 0 点赞 0 评论 220 浏览 评分:0.0
记录skdhfiasfhgjksadkfh 摘要:解题思路:注意事项:参考代码:#include "stdio.h"#include<stdlib.h>typedef int Elemtype;typedef struct LNode //结构定义{…… 题解列表 2021年10月12日 0 点赞 0 评论 363 浏览 评分:0.0
蓝桥杯算法训练VIP-链表数据求和操作题解(java) 摘要:**思路:** 用的是自建类的方式来模拟链表添加,创建,链表求和写在main函数里面 **代码:** ```java import java.util.Scanner; //List…… 题解列表 2022年01月17日 0 点赞 0 评论 209 浏览 评分: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 评论 190 浏览 评分:0.0
循环链表解法 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>using namespace std;int main(){ typedef st…… 题解列表 2022年03月12日 0 点赞 0 评论 140 浏览 评分:0.0
编写题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct Node { int data; //实部 int data1; …… 题解列表 2022年03月27日 0 点赞 0 评论 155 浏览 评分:0.0
题解 1585: 蓝桥杯算法训练VIP-链表数据求和操作 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <malloc.h> typedef struct node { int real; …… 题解列表 2022年04月10日 0 点赞 0 评论 174 浏览 评分:0.0