1511: 蓝桥杯算法提高VIP-复数求和 摘要:```cpp #include using namespace std; class node { public: int date1; int date2; node* nex…… 题解列表 2022年03月17日 0 点赞 0 评论 173 浏览 评分:0.0
复数求和代码(小白) 摘要:解题思路:把实部虚部分别存入列表 用sum函数注意事项:参考代码:n = int(input())S = []X = []for i in range(0, n): a, b = map(int…… 题解列表 2022年03月22日 0 点赞 0 评论 313 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:考察链表的建立与遍历注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<malloc.h>typedef struct link{ s…… 题解列表 2022年03月29日 0 点赞 0 评论 223 浏览 评分:0.0
[Sapphire]1511:链表复数求和(C语言代码) 摘要:简单链表求和2022/4/7Sapphire解题思路:链表废才学链表的第一题,哈哈哈光看代码就可以了,我会有相应的解释注意事项:1.我有一问,这里如果不要typedef,那么在申请结点空间的时候应该用…… 题解列表 2022年04月07日 0 点赞 0 评论 257 浏览 评分:0.0
题解 1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef struct node …… 题解列表 2022年04月09日 0 点赞 0 评论 148 浏览 评分:0.0
编写题解 1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; int sum1,s…… 题解列表 2022年04月29日 0 点赞 0 评论 177 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 题解(c++我有重大发现!!!!!) 摘要:解题思路:这里更正一下啊,这里的链表在c++中也叫结构体。怪不得我在题目标签里找不到结构体!直接上程序!注意事项:无。参考代码:#include<bits/stdc++.h>using namespa…… 题解列表 2022年05月12日 0 点赞 0 评论 170 浏览 评分:0.0
十分钟这道题会不会太久了 摘要:解题思路:注意事项:参考代码:n=int(input())lh=[]x=y=0for i in range(n): l=list(map(int,input().split())) lh.…… 题解列表 2022年05月28日 0 点赞 0 评论 187 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和(参考了上一题优质题解的代码改的,记录在案) 摘要:#include #include typedef struct plural { int real; int imag; struct plural *…… 题解列表 2022年07月19日 0 点赞 0 评论 130 浏览 评分:0.0
小南解题---复数求和--61ms 摘要:'''2022年03月12日 01:05:04.873zgn946''' a=int(input())cc=[]dd=[]for ii in range…… 题解列表 2022年08月27日 0 点赞 0 评论 252 浏览 评分:0.0