1、为什么二分查找常用left+(right-left)/2而不是(left+right)/2 使用(left+right)/2 当left和right都很大的时候,可能会造成越界。 使用left+(right-left)/2防止溢出(越界)