蓝桥杯算法提高VIP-数组替换 (C++代码) 摘要:#include<iostream> using namespace std; void add(int a[], int e, int b[], int f){ …… 题解列表 2017年12月17日 0 点赞 0 评论 1163 浏览 评分:0.0
有坑,a后面的数还要输出 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;const int t=1e6;int a[t],b[t]={0};void a…… 题解列表 2025年02月20日 0 点赞 0 评论 73 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (*>.<*) 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; void Add (int a[], int m, int b[], int…… 题解列表 2024年11月12日 0 点赞 0 评论 98 浏览 评分:0.0
编写题解 1483: 蓝桥杯算法提高VIP-数组替换---82同学看过来 摘要:解题思路:分别用两个vector容器存储输入的数据,把两个数组中要求取出的元素放到一个容器中,最后整体输出注意事项: 判断要取出的两个数组的元素的个数加起来是否超过了原本的第一个数组的大小,如果没有超…… 题解列表 2022年04月26日 0 点赞 0 评论 170 浏览 评分:0.0
C++版本—— 理解题意 摘要: #include using namespace std; int main() { int m,n; cin >> m >>…… 题解列表 2021年04月16日 0 点赞 0 评论 262 浏览 评分:0.0
我淦,冲冲冲。 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <iomanip>using namespace std;void Add(int a[],int m,int b…… 题解列表 2021年04月12日 0 点赞 0 评论 221 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换-题解(C++代码) 摘要:```cpp #include #include using namespace std; queue q; void Add(int *a,int m,int *b,int n){ …… 题解列表 2020年04月07日 0 点赞 0 评论 434 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换-题解(C++代码) 摘要:#include using namespace std; void Add(int a[], int m, int b[], int n) { int i, j; fo…… 题解列表 2019年12月03日 0 点赞 0 评论 478 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C++代码) 摘要:解题思路:注意事项:k=k>m?k:m;注意这一句代码,套路好深!!!参考代码:#include<bits/stdc++.h>using namespace std;int a[10000],b[10…… 题解列表 2019年02月28日 0 点赞 0 评论 529 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C++代码) 摘要:解题思路:输入数组——>替换代码———>输出结果注意事项:参考代码:#include <iostream>#include<stdio.h>using namespace std;int main()…… 题解列表 2018年03月12日 0 点赞 0 评论 802 浏览 评分:0.0