1-1实参交换
public static void swap(int x,int y){
int temp=x;
x=y;
y=temp;
}
上述均为值参数,执行调用后,实际参数不变
public static void swap(init *x,int *y){
int temp=*x;
*x=*y;
*y=temp;
}
1-2方法签名
Posted kekeoutlook
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一章 算法引论相关的知识,希望对你有一定的参考价值。
public static void swap(int x,int y){
int temp=x;
x=y;
y=temp;
}
上述均为值参数,执行调用后,实际参数不变
public static void swap(init *x,int *y){
int temp=*x;
*x=*y;
*y=temp;
}
以上是关于第一章 算法引论的主要内容,如果未能解决你的问题,请参考以下文章