2021-11-14(JZ57 和为S的两个数字)

import java.util.ArrayList;
public class Solution {
    public ArrayList<Integer> FindNumbersWithSum(int [] array,int sum) {
        ArrayList<Integer> result=new ArrayList<>();
        int first=0,second=array.length-1;
        while(first<second){
            int temp=array[first]+array[second];
            if(temp==sum){
                result.add(array[first]);
                result.add(array[second]);
                break;
            }else if(temp<sum){
                first++;
            }else{
                second--;
            }
        }
        return result;
    }
}
上一篇:日志统计(滑动窗口,双指针问题)——第九届蓝桥杯省赛C++B组


下一篇:CSS基础