蓝桥杯算法提高VIP-复数求和-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; …… 题解列表 2021年01月17日 0 点赞 0 评论 453 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和-题解(C语言代码) 摘要:解题思路:仅记录自己的题解注意事项:仅记录自己的题解参考代码:仅记录自己的题解#include<stdio.h>#include<malloc.h>#include<stdlib.h>typedef …… 题解列表 2021年01月28日 0 点赞 0 评论 738 浏览 评分:9.9
复数求和(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{ struct LNode *next;//下一…… 题解列表 2021年03月14日 0 点赞 0 评论 330 浏览 评分:9.9
python比较朴素的笨办法 摘要:解题思路:注意事项:参考代码:ls = []ls1 = []z = 0g = 0n = int(input())for i in range(n): a, b = map(int, input(…… 题解列表 2021年04月16日 0 点赞 0 评论 233 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> #include<stdlib.h> #define I sizeof(struct a)…… 题解列表 2021年10月23日 0 点赞 0 评论 324 浏览 评分:9.9
适合所有初学者学习的链表(简单易懂) 摘要:解题思路:先创建一个链表,然后把实部,虚部分别相加,在删除链表。注意事项:记得用完链表要删除。参考代码:#include#include typedef struct node{ int r…… 题解列表 2021年11月30日 0 点赞 0 评论 478 浏览 评分:9.9
python党食用(链表详细题解) 摘要:- **类定义** ```python class Node: def __init__(self,real,imag): …… 题解列表 2022年01月30日 0 点赞 0 评论 419 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和-题解(C++代码(list)) 摘要:#include<iostream> #include<list> using namespace std; int main() { list<pair<int, int>> L; i…… 题解列表 2022年02月28日 0 点赞 0 评论 374 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:利用两个一维数组进行计算注意事项:1.a1=0,b1=0切记要写上,否则编译出现问题。参考代码:#include<stdio.h>int main(){int n;scanf("%d",&n…… 题解列表 2022年07月11日 0 点赞 0 评论 200 浏览 评分:9.9
1511: 蓝桥杯算法提高VIP-复数求和 摘要:```cpp #include #include using namespace std; int main() { listL; int n,real,imag,tot…… 题解列表 2023年01月30日 0 点赞 0 评论 184 浏览 评分:9.9