详细代码
编写函数 int *inverse(int *p,int n),功能:对 p 开始的 n 个整数逆序
并保存在 p 开始的地址中。
编写函数 int *inverse(int *p,int n),功能:对 p 开始的 n 个整数逆序
并保存在 p 开始的地址中。
收起
- int *s=p;
- int *e=p+n-1;
- while(e>s)
- {
- int tmp=*s;
- *s=*e:
- *e=tmp;
- s++;
- e--;
- }
报告相同问题?