zoukankan      html  css  js  c++  java
  • ✡ leetcode 167. Two Sum II

    Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.

    The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.

    You may assume that each input would have exactly one solution.

    Input: numbers={2, 7, 11, 15}, target=9
    Output: index1=1, index2=2

    第一题就是两数相加的题,其实可以用同一种解法。

    这算法很基础,也没什么特殊的点。

    public class Solution {
        public int[] twoSum(int[] numbers, int target) {
            int len = numbers.length;
            int left = 0;
            int right = len - 1;
            int[] result = new int[2];
            while (left < right){
                if (numbers[left] + numbers[right] <  target){
                    left++;
                } else if (numbers[left] + numbers[right] > target){
                    right--;
                } else {
                    result[0] = left + 1;
                    result[1] = right + 1;
                    break;
                }
            }
            return result;
        }
    }
  • 相关阅读:
    easyui好例子,值得借鉴
    DDL 和DML 区别
    兼容IE的文字提示
    搭代理
    美国服务器
    跟随滚动条滚动
    JS Array对象
    JS 内置对象 String对象
    JS 对象
    JS 二维数组
  • 原文地址:https://www.cnblogs.com/xiaoba1203/p/6117787.html
Copyright © 2011-2022 走看看