大哥我不会用链表存储,呜呜呜 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,sum1=0,sum2=0,n,a[100],b[100]; scanf("%d",&n); for…… 题解列表 2021年07月17日 0 点赞 0 评论 272 浏览 评分:7.0
1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{ int a; int b; str…… 题解列表 2021年07月28日 0 点赞 0 评论 186 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:#define _CRT_SECURE_NO_DEPRECATE #include <stdio.h> #include <stdlib.h> typedef struct fushu {…… 题解列表 2021年09月14日 0 点赞 0 评论 57 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> #include<stdlib.h> #define I sizeof(struct a)…… 题解列表 2021年10月23日 0 点赞 0 评论 296 浏览 评分:9.9
适合所有初学者学习的链表(简单易懂) 摘要:解题思路:先创建一个链表,然后把实部,虚部分别相加,在删除链表。注意事项:记得用完链表要删除。参考代码:#include#include typedef struct node{ int r…… 题解列表 2021年11月30日 0 点赞 0 评论 433 浏览 评分:9.9
蓝桥杯 复数求和自编链表完整版c++解法 摘要:解题思路:本题思路:1:比赛思路可以不通过链表的方法而直接使用遍历输入的办法直接求得结果。 2:这里采用数据结构中单链表中 题解列表 2022年01月02日 0 点赞 0 评论 207 浏览 评分:0.0
标准的写法 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> typedef struct Node{ int x; int y; …… 题解列表 2022年01月26日 0 点赞 0 评论 204 浏览 评分:0.0
python党食用(链表详细题解) 摘要:- **类定义** ```python class Node: def __init__(self,real,imag): …… 题解列表 2022年01月30日 0 点赞 0 评论 376 浏览 评分: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 评论 317 浏览 评分:9.9
1511: 蓝桥杯算法提高VIP-复数求和 摘要:```cpp #include using namespace std; class node { public: int date1; int date2; node* nex…… 题解列表 2022年03月17日 0 点赞 0 评论 122 浏览 评分:0.0