蓝桥杯 复数求和自编链表完整版c++解法
摘要:解题思路:本题思路:1:比赛思路可以不通过链表的方法而直接使用遍历输入的办法直接求得结果。 2:这里采用数据结构中单链表中
适合所有初学者学习的链表(简单易懂)
摘要:解题思路:先创建一个链表,然后把实部,虚部分别相加,在删除链表。注意事项:记得用完链表要删除。参考代码:#include#include typedef struct node{ int r……
蓝桥杯算法提高VIP-复数求和
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>
#define I sizeof(struct a)……
蓝桥杯算法提高VIP-复数求和
摘要:#define _CRT_SECURE_NO_DEPRECATE
#include <stdio.h>
#include <stdlib.h>
typedef struct fushu
{……
1511: 蓝桥杯算法提高VIP-复数求和
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct LNode{ int a; int b; str……
大哥我不会用链表存储,呜呜呜
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,sum1=0,sum2=0,n,a[100],b[100]; scanf("%d",&n); for……
python比较朴素的笨办法
摘要:解题思路:注意事项:参考代码:ls = []ls1 = []z = 0g = 0n = int(input())for i in range(n): a, b = map(int, input(……
蓝桥杯算法提高VIP-复数求和
摘要: num = int(input())
ls = []
m, n = 0, 0
for i in range(num):
a, b = map(i……
算法提高VIP复数求和
摘要:import java.util.Scanner;
public class Main {
public static void main(String[] args) {
……