有什么区别
int x = (right + left) / 2;
和
int x = left + (right - left) / 2;
只是我在第一种情况下得到了时间限制异常,在二次搜索时被第二种情况接受了