剑指 Offer 57. 和为s的两个数字

Posted 小布丁value

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指 Offer 57. 和为s的两个数字相关的知识,希望对你有一定的参考价值。




https://leetcode-cn.com/problems/he-wei-sde-liang-ge-shu-zi-lcof/solution/mian-shi-ti-57-he-wei-s-de-liang-ge-shu-zi-shuang-/

class Solution {
    public int[] twoSum(int[] nums, int target) {
        int i=0,j=nums.length-1;
        while(i<j){
            int s=nums[i]+nums[j];
            if( s<target) i++;
            else if(s>target) j--;
            else return new int[]{nums[i],nums[j]};
        }
        return new int[0];

    }
}

以上是关于剑指 Offer 57. 和为s的两个数字的主要内容,如果未能解决你的问题,请参考以下文章

剑指 Offer 57. 和为s的两个数字

剑指 Offer 57. 和为s的两个数字

LeetCode(剑指 Offer)- 57. 和为 s 的两个数字

LeetCode(剑指 Offer)- 57. 和为 s 的两个数字

LeetCode——剑指 Offer 57 和为s的两个数字

算法剑指 Offer 57. 和为s的两个数字