gpt4 book ai didi

c - 如何在另一个数组中的用户指定位置插入一个数组并获取结果数组?

转载 作者:太空宇宙 更新时间:2023-11-04 04:16:16 25 4
gpt4 key购买 nike

在指定位置插入第二个数组后将结果数组右移时出现问题。请注意不需要旋转、循环或反向。

#include <stdio.h>

void main() {
int i, n, m, location, b[20], a[20];
printf("Enter the number of elements in first array:\n");
scanf("%d", &m);
printf("Enter the elements of first array : \n");
for (i = 0; i < m; i++) {
scanf("%d", &a[i]);
}

printf("Enter the location to insert second array : \n");
scanf("%d", &location);
printf("Enter the number of elements in second array :\n");
scanf("%d", &n);
printf("Enter the elements of second array : \n");
for (i = 0; i < n; i++) {
scanf("%d", &b[i]);
}

for (i = m; i >= location; i--) {
a[i + n] = a[i];
}
a[location + i] = b[i];
m++;

printf("Resulting array after insertion is : \n");
for (i = 0; i < m; i++) {
printf("%d ", a[i]);
}
printf("\n");
}

运行程序后。我明白这是不正确的。

Enter the number of elements in first array:
3

Enter the elements of first array :
10 20 30

Enter the location to insert second array :
1

Enter the number of elements in second array :
2

Enter the elements of second array :
55 66

Resulting array after insertion is :
10 55 30 20

最佳答案

您只是将 b 的一个元素添加到 a

替换你的

 a[location+i] = b[i];
m++;

 for(i=0;i<n;i++)
{
a[location+i] = b[i];
}

m+=n;

因为你需要遍历 b 数组,将所有元素添加到 a 数组中。

关于c - 如何在另一个数组中的用户指定位置插入一个数组并获取结果数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52110755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com