摘要: public int[] twoSum1(int[] nums, int target) { int first; int second; int a; int b=1; //外循环 假设第一个值为索引为a out: for (a = 0; a < nums.length; a++) { first 阅读全文
posted @ 2018-11-18 22:14 绸缪 阅读(110) 评论(0) 推荐(0)