C语言中swap的作用和用法
#include<stdio.h>voidmain(){voidswap(int*p1,int*p2;inta,b;int*pointer_1,*pointer_2;sc...
#include<stdio.h>void main() { void swap(int * p1,int * p2; int a,b; int * pointer_1,* pointer_2; scanf("%d,%d",&a,&b); pointer_1=&a;pointer_2=&b if(a<b) swap(pointer_1,pointer_2); printf("\n%d,%d\n",a,b); }void swap(int *p1,int *p2) 输入 5,9 输出9,5 {int temp; temp=*p1; *p1=*p2 ; *p2=temp;
展开
10个回答
展开全部
swap函数一般是一个程序员自定义函数。通常是实现两个变量数值的交换。比如
int a = 2;
int b =3;
swap(a,b); //一般用到变量数值交换,交换后a=3 b = 2;
实现的方法多种多样。比如下面几种写法:
1、通过使用临时变量实现交换。
void swap1(int x,int y)
{
int temp;
temp=x;
x=y;
y=temp;
}
2、通过临时指针变量实现交换。
void swap2(int *x,int *y)
{
int *temp;
temp=x;
x=y;
y=temp;
}
3、借助指针加入临时变量来实现交换。
void swap3(int *x,int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}
int a = 2;
int b =3;
swap(a,b); //一般用到变量数值交换,交换后a=3 b = 2;
实现的方法多种多样。比如下面几种写法:
1、通过使用临时变量实现交换。
void swap1(int x,int y)
{
int temp;
temp=x;
x=y;
y=temp;
}
2、通过临时指针变量实现交换。
void swap2(int *x,int *y)
{
int *temp;
temp=x;
x=y;
y=temp;
}
3、借助指针加入临时变量来实现交换。
void swap3(int *x,int *y)
{
int temp;
temp=*x;
*x=*y;
*y=temp;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-27
展开全部
这个函数是你自己定义的,不是C语言的库函数作用是利用 指向 两个变量的指针 交换 两个变量的值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-27
展开全部
#include<iostream>
using namespace std;
头文件中加入这两句便可用swap了
例如 a,b 可以同为数或字符串
swap(a,b)
using namespace std;
头文件中加入这两句便可用swap了
例如 a,b 可以同为数或字符串
swap(a,b)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |