实现下面的数组元素交换位置函数:voidswap(inta[],intm,intn);该函数能够把数组a的前m个元素与后n个元素交换位置,即,交换前:a1,a2,...,aM,aM+1,aM+2,...,aM+N交换后:aM+1,aM+2,...,aM+N,a1,a2,...,aM