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