蓝桥杯算法提高VIP-数组替换-题解(C语言代码),24行 摘要:```c #include int main(){ int m,n,m1,n1,i; scanf("%d %d",&m,&n); int a[m],b[n]; …… 题解列表 2020年01月10日 0 点赞 0 评论 346 浏览 评分:0.0
简单题owo难得会做的题目 摘要:解题思路:照着题目要求来就好注意事项:唯一的坑就是题目给的不清晰,没有说明m1+n1<m的情况下a后面的部分要补上参考代码:#include<stdio.h>int main(){ int m,n,m…… 题解列表 2021年11月29日 0 点赞 0 评论 226 浏览 评分:0.0
巨简单,蓝桥杯算法提高VIP-数组替换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m; scanf("%d%d", &n, &m); int array1[10000], arra…… 题解列表 2023年05月05日 0 点赞 0 评论 59 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int a[10000];int b[10000];int count;void add(int…… 题解列表 2018年12月23日 0 点赞 0 评论 562 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换-题解(C语言代码) 摘要:- 注意事项:输出的是数组a【】,当m>m1+n1时,a【m1+n1】后的也需输出。```c #include void Add(int a[],int m1,int b[],int n1…… 题解列表 2020年02月25日 0 点赞 0 评论 262 浏览 评分:0.0
[算法提高VIP]数组替换:非常简单 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> void Add(int a[], int m, int b[], int n) { …… 题解列表 2021年03月12日 0 点赞 0 评论 108 浏览 评分:0.0
花落的新手代码(C语言代码) 摘要:解题思路:函数不难设计,但是细节非常重要。注意事项:注意这题超级坑,有时候m+n小于原来长度,有时候大于,注意到这点就可以了。参考代码:#include<stdio.h> #include<stri…… 题解列表 2017年12月25日 3 点赞 4 评论 690 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换-题解(C语言代码) 摘要:## 解题思路: 输入两个数组的长度和数组的内容,然后在输入第一个数组的第m1位置之后插入第二个数组第n1个之前的数据,直接将第一个数组从第m1的位置赋值第二个数组即可。最后输出改变后的第一个数组 …… 题解列表 2020年07月12日 0 点赞 0 评论 277 浏览 评分:0.0
数组替换小白解法-C语言 摘要:解题思路: 用指针来存放数组的长度注意事项: 注意区分数组a追加后的长度和原本的长度哪个更大参考代码: #include<stdio.h> int *p1,*p2; vo…… 题解列表 2021年11月26日 0 点赞 0 评论 300 浏览 评分:0.0
蓝桥杯算法提高VIP-数组替换 (C语言代码) 摘要:#include<stdio.h>int a[100],b[100];int n,m,m1,n1;void Add (int a[],int m,int b[],int n){ int i; for(…… 题解列表 2018年03月31日 0 点赞 1 评论 306 浏览 评分:0.0