数组逆置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组逆置相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
void fun(int a[], int n){
int i,j,temp;
for(i = 0,j = n-1; i < j; i ++,j --){// 交换时 i< j即可完成
temp = a[i];
a[i] = a[j];//
a[j] = temp;
}
for(j = 0;j < n; j++){
printf("%d",a[j]);
}
}
int main(void){
int a[] = {1,2,3,4,5,6,7,8,9};
fun(a,9);
return 0;
}
以上是关于数组逆置的主要内容,如果未能解决你的问题,请参考以下文章