C语言解题,带注释,体现模块化思想 摘要: #include #include typedef struct _node { int value_real; int value_i…… 题解列表 2025年01月20日 0 点赞 0 评论 24 浏览 评分:0.0
1511: 蓝桥杯算法提高VIP-复数求和 摘要:**问题描述:**从键盘读入n个复数(实部和虚部都为整数)用链表存储,遍历链表求出n个复数的和并输出。 **解题思路:** 1.创建链表,申请头结点 2.void* str_Buynode(…… 题解列表 2024年07月12日 0 点赞 0 评论 150 浏览 评分:9.9
Jayden-[解释通俗易懂,一看就会! ] 复数求和(结构体&&功能模块化) 摘要:解题思路: 题目是想求链表中复数之和,那么我们可以从链表入手,我的思路是:将第二个节点就当作是最后要求和的节点,把第二个节点之后的所有节点的数据都加在这个节点上,最后是输出headNod…… 题解列表 2024年03月12日 0 点赞 0 评论 114 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct num { int f; int v; struct num* next;}n;str…… 题解列表 2023年10月13日 0 点赞 0 评论 64 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:#include<stdio.h> #include<stdlib.h> typedef struct elemtype { int a; int b; struct elem…… 题解列表 2023年06月08日 0 点赞 0 评论 52 浏览 评分:0.0
1511: 蓝桥杯算法提高VIP-复数求和——Ccp 摘要:解题思路:注意事项:参考代码:#include<stdlib.h>struct Num{ int rnum; int vnum; struct Num*next;};int main(){ struc…… 题解列表 2023年03月09日 0 点赞 0 评论 143 浏览 评分:9.9
题目 1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:从键盘读入n个复数(实部和虚部都为整数)用链表存储,遍历链表求出n个复数的和并输出。注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef …… 题解列表 2023年01月12日 0 点赞 0 评论 76 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和(参考了上一题优质题解的代码改的,记录在案) 摘要:#include #include typedef struct plural { int real; int imag; struct plural *…… 题解列表 2022年07月19日 0 点赞 0 评论 107 浏览 评分:0.0
蓝桥杯算法提高VIP-复数求和 摘要:解题思路:利用两个一维数组进行计算注意事项:1.a1=0,b1=0切记要写上,否则编译出现问题。参考代码:#include<stdio.h>int main(){int n;scanf("%d",&n…… 题解列表 2022年07月11日 0 点赞 0 评论 143 浏览 评分:9.9
题解 1511: 蓝桥杯算法提高VIP-复数求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <malloc.h> #include <stdlib.h> typedef struct node …… 题解列表 2022年04月09日 0 点赞 0 评论 128 浏览 评分:0.0