if (a>b>c)不是a>b并且b>c而是a>b的结果1,1>c,是0所以走else if分支,结果3
xp =2 * k < ( n-m) ? c[k+1] : d[k--]; if(2*k <(n-m)) xp = c[k+1]; else xp = d[k--];