python党食用(链表详细题解) 摘要:- **类定义** ```python class Node: def __init__(self,real,imag): …… 题解列表 2022年01月30日 0 点赞 0 评论 419 浏览 评分:9.9
标准的写法 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> typedef struct Node{ int x; int y; …… 题解列表 2022年01月26日 0 点赞 0 评论 229 浏览 评分:0.0
蓝桥杯 复数求和自编链表完整版c++解法 摘要:解题思路:本题思路:1:比赛思路可以不通过链表的方法而直接使用遍历输入的办法直接求得结果。 2:这里采用数据结构中单链表中 题解列表 2022年01月02日 0 点赞 0 评论 262 浏览 评分:0.0
适合所有初学者学习的链表(简单易懂) 摘要:解题思路:先创建一个链表,然后把实部,虚部分别相加,在删除链表。注意事项:记得用完链表要删除。参考代码:#include#include typedef struct node{ int r…… 题解列表 2021年11月30日 0 点赞 0 评论 478 浏览 评分: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
蓝桥杯算法提高VIP-复数求和 摘要:#define _CRT_SECURE_NO_DEPRECATE #include <stdio.h> #include <stdlib.h> typedef struct fushu {…… 题解列表 2021年09月14日 0 点赞 0 评论 79 浏览 评分:0.0
1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{ int a; int b; str…… 题解列表 2021年07月28日 0 点赞 0 评论 221 浏览 评分: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 评论 323 浏览 评分: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 评论 233 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和 摘要: num = int(input()) ls = [] m, n = 0, 0 for i in range(num): a, b = map(i…… 题解列表 2021年04月08日 0 点赞 0 评论 247 浏览 评分:7.0