Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

วิธีการสลับสองอาร์เรย์โดยไม่ต้องใช้ตัวแปรชั่วคราวในภาษา C?


สลับสองอาร์เรย์โดยไม่ต้องใช้ตัวแปร Temp ในที่นี้ เราจะใช้ตัวดำเนินการเลขคณิตและตัวดำเนินการ Bitwise แทนตัวแปรตัวที่ 3

ตรรกะในการ อ่านอาร์เรย์แรก เป็นดังนี้ −

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];
}

โปรแกรม

ต่อไปนี้เป็นโปรแกรม C เพื่อสลับสองอาร์เรย์โดยไม่ต้องใช้ตัวแปร Temp -

#include<stdio.h>
int main(){
   int size, i, first[20], sec[20];
   printf("enter the size of array:");
   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]);
   }
   //Swapping two Arrays
   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;
}

ผลลัพธ์

เมื่อโปรแกรมข้างต้นทำงาน มันจะให้ผลลัพธ์ดังต่อไปนี้ −

enter the size of array:5
enter 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