查看会员资料
用 户 名:v*****
发送消息- Email:用户隐藏
- Icq/MSN:
- 电话号码:
- Homepage:
- 会员简介:
最新会员发布资源
3-7
- 实现下面的数组元素交换位置函数:void swap(int a[], int m, int n) 该函数能够把数组a的前m个元素与后n个元素交换位置,即, 交换前:a1,a2,...,aM, aM+1,aM+2,...,aM+N 交换后:aM+1,aM+2,...,aM+N, a1,a2,...,aM (要求:除数组a外,不得引入其它数组。)- implement the following array element exchange position function: