采用二分法插入:1.设low=1,high=a.length,mid=(low+high)/2;2.如果x大于a[mid],则low=mid+1,否则high=mid-1;3.重复2过程,直到a[low]