蓝桥杯算法提高VIP-复数求和-题解(C++代码(list)) 摘要:#include<iostream> #include<list> using namespace std; int main() { list<pair<int, int>> L; i…… 题解列表 2022年02月28日 0 点赞 0 评论 724 浏览 评分:9.9
python党食用(链表详细题解) -**类定义**```pythonclassNode:def__init__(self,real,imag):#两个参数,real表示实部,imag表示虚部self.real=realself.imag=imagself.next=None#结点的指针域默认为空```-**尾插法构造顺序单链表函数** 题解列表 2022年01月30日 0 点赞 0 评论 787 浏览 评分:9.9
标准的写法 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> typedef struct Node{ int x; int y; …… 题解列表 2022年01月26日 0 点赞 0 评论 615 浏览 评分:0.0
蓝桥杯 复数求和自编链表完整版c++解法 摘要:解题思路:本题思路:1:比赛思路可以不通过链表的方法而直接使用遍历输入的办法直接求得结果。 2:这里采用数据结构中单链表中 题解列表 2022年01月02日 0 点赞 0 评论 645 浏览 评分:0.0
适合所有初学者学习的链表(简单易懂) 摘要:解题思路:先创建一个链表,然后把实部,虚部分别相加,在删除链表。注意事项:记得用完链表要删除。参考代码:#include#include typedef struct node{ int r…… 题解列表 2021年11月30日 0 点赞 0 评论 821 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> #include<stdlib.h> #define I sizeof(struct a)…… 题解列表 2021年10月23日 0 点赞 0 评论 603 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和 摘要:#define _CRT_SECURE_NO_DEPRECATE #include <stdio.h> #include <stdlib.h> typedef struct fushu {…… 题解列表 2021年09月14日 0 点赞 0 评论 521 浏览 评分:0.0
1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{ int a; int b; str…… 题解列表 2021年07月28日 0 点赞 0 评论 499 浏览 评分:0.0
大哥我不会用链表存储,呜呜呜 摘要:解题思路:注意事项:参考代码:#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 评论 670 浏览 评分:7.0
python比较朴素的笨办法 摘要:解题思路:注意事项:参考代码:ls = []ls1 = []z = 0g = 0n = int(input())for i in range(n): a, b = map(int, input(…… 题解列表 2021年04月16日 0 点赞 0 评论 636 浏览 评分:9.9