在LeetCode做的第一到题 题目大意:给出n个数,在其中找出和为一个特定数的两个数. Input: numbers={2, 7, 11, 15}, target=9Output: index1=1, index2=2 返回这两个数在原数组内的下标. 我的思路: 1.遍历数组 int temp = target-num[i] 2.查找数组内有没有符合的temp存在. 3.因为这个题目是肯定会有符合条件的两个数的,所以temp肯定存在. 但这样会遇到这些问题: 1.查找最快的是使用二分查找,但是…