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

ฟังก์ชัน swap() ใน C++


ฟังก์ชัน swap() ใช้เพื่อสลับตัวเลขสองตัว เมื่อใช้ฟังก์ชันนี้ คุณไม่จำเป็นต้องมีตัวแปรที่สามเพื่อสลับตัวเลขสองตัว

นี่คือไวยากรณ์ของ swap() ในภาษา C++

void swap(int variable_name1, int variable_name2);

หากเรากำหนดค่าให้กับตัวแปรหรือส่งผ่านค่าที่ผู้ใช้กำหนด ค่านั้นจะสลับค่าของตัวแปรแต่ค่าของตัวแปรจะยังคงเหมือนเดิม ณ สถานที่จริง

นี่คือตัวอย่างของ swap() ในภาษา C++

ตัวอย่าง

#include <bits/stdc++.h>
using namespace std;
int main() {
   int x = 35, y = 75;
   printf("Value of x :%d",x);
   printf("\nValue of y :%d",y);
   swap(x, y);
   printf("\nAfter swapping, the values are: x = %d, y = %d", x, y);
   return 0;
}

ผลลัพธ์

Value of x :35
Value of y :75
After swapping, the values are: x = 75, y = 35

เป็นการดีกว่าที่เราจะส่งต่อค่าไปยังตัวแปรโดยการอ้างอิง มันจะสลับค่าของตัวแปรที่ตำแหน่งจริง

นี่เป็นอีกตัวอย่างหนึ่งของ swap() ในภาษา C++

ตัวอย่าง

#include <stdio.h>
void SwapValue(int &a, int &b) {
   int t = a;
   a = b;
   b = t;
}
int main() {
   int a, b;
   printf("Enter value of a : ");
   scanf("%d", &a);
   printf("\nEnter value of b : ");
   scanf("%d", &b);
   SwapValue(a, b);
   printf("\nAfter swapping, the values are: a = %d, b = %d", a, b);
   return 0;
}

ผลลัพธ์

Enter value of a : 8
Enter value of b : 28
After swapping, the values are: a = 28, b = 8