1. 程式人生 > >c++實現兩個數的交換

c++實現兩個數的交換

在c++中,有以下四種方法可以實現兩個數的交換:

1、指標傳遞

void swap1(int *p,int *q) 
{
  int temp=*p;
  *p=*q;
  *q=temp;
}

2、巨集定義

#define swap2(x,y,z) ((z)=(x),(x)=(y),(y)=(z))

3、引用傳遞

void swap3(int &x,int &y)
{
int temp=x;
x=y;
y=temp;
}

4、使用c++中的模板函式swap

template <class T> void
swap(T &a,T &b)

【完整程式碼】

#include<iostream>
using namespace std;

 //方法1:指標傳遞
void swap1(int *p,int *q) 
{
  int temp=*p;
  *p=*q;
  *q=temp;
}

//方法2:巨集定義
#define swap2(x,y,z) ((z)=(x),(x)=(y),(y)=(z))  

//方法3:引用傳遞
void swap3(int &x,int &y)  
{
  int temp=x;
  x=y;
  y=temp;
}


int
main() { int a,b; int temp; a=1;b=10; cout<<"a="<<a<<" b="<<b<<endl; swap1(&a,&b); cout<<"a="<<a<<" b="<<b<<endl; a=2;b=10; cout<<"a="<<a<<" b="<<b<<endl; swap2(a,b,temp); cout<<"a="<<a<<" b="
<<b<<endl; a=3;b=10; cout<<"a="<<a<<" b="<<b<<endl; swap3(a,b); cout<<"a="<<a<<" b="<<b<<endl; a=4;b=10; cout<<"a="<<a<<" b="<<b<<endl; //方法4:使用c++中的模板函式 std::swap(a,b); cout<<"a="<<a<<" b="<<b<<endl; }

結果:
這裡寫圖片描述