c语言如何不使用临时变量交换两个数组?
在不使用 Temp 变量的情况下交换两个数组。在这里,我们将使用算术运算符和位运算符而不是第三个变量。
读取第一个数组的逻辑如下 -
printf("enter first array ele:\n");for(i = 0; i < size; i++){
scanf("%d", &first[i]);
}
读取第二个数组的逻辑如下 -
printf("enter first array ele:\n");for(i = 0; i < size; i++){
scanf("%d", &first[i]);
}
在不使用第三个变量的情况下交换两个数组的逻辑如下 -
for(i = 0; i < size; i++){first[i] = first[i] + sec[i];
sec[i] = first[i] - sec[i];
first[i] = first[i] - sec[i];
}
程序
以下是在不使用 Temp 变量的情况下交换两个数组的 C 程序 -
#include<stdio.h>输出结果int main(){
int size, i, first[20], sec[20];
printf("输入数组的大小:");
scanf("%d", &size);
printf("enter first array ele:\n");
for(i = 0; i < size; i++){
scanf("%d", &first[i]);
}
printf("enter second array ele:\n");
for(i = 0; i < size; i ++){
scanf("%d", &sec[i]);
}
//交换两个数组
for(i = 0; i < size; i++){
first[i] = first[i] + sec[i];
sec[i] = first[i] - sec[i];
first[i] = first[i] - sec[i];
}
printf("\n first array after swapping %d elements\n", size);
for(i = 0; i < size; i ++){
printf(" %d \t ",first[i]);
}
printf("sec array after Swapping %d elements\n", size);
for(i = 0; i < size; i ++){
printf(" %d \t ",sec[i]);
}
return 0;
}
执行上述程序时,会产生以下结果 -
输入数组的大小:5enter first array ele:
11 12 13 14 15
enter second array ele:
90 80 70 60 50
first array after swapping 5 elements
90 80 70 60 50
sec array after Swapping 5 elements
11 12 13 14 15
以上是 c语言如何不使用临时变量交换两个数组? 的全部内容, 来源链接: utcz.com/z/351637.html