Binary search: Step: Find the mid index and set the low and high value; Compare the mid value and target one, if the mid value is greater than the target one ,than set the high value to mid -1; if no, set the low value to mid +1; 数组去重 Hash中转