java中关于readLine()的一个问题

我想用readLine().trim().split(" "); 这个代码去实现输入一行数值,并将这一行数值存储到数组中。
但我用这个去划分的时候,最后编译总会出现Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2 at Solution.main(Solution.java:12)
这种问题。
以如下题目为例:给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。
我的代码如下:
import java.io.*;
import java.util.*;

public class Solution {
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int target = Integer.parseInt(br.readLine());
        int nums[] = new int[n];
        for(int i = 0; i < n; i++){
            String[] temp = br.readLine().trim().split(" ");
            nums[i] = Integer.parseInt(temp[i]);
        }
        int[] result = new int[2];
        for(int i = 0; i < result.length; i++){
            result[i] = twoSum(nums,target)[i];
        }
        System.out.println("[" + result[0] + "," + result[1] +"]");
    }
    public static int[] twoSum(int[] nums, int target) {
        int tot[] = new int[2];
        //int sum = 0;
        for(int i = 0 ; i < nums.length; i++){
            for(int j = i+1; j < nums.length; j++){
                if((nums[i] + nums[j]) == target) {
                    tot[0] = i;
                    tot[1] = j;
                }
            }
        }
        return tot;
    }
}
在编译的时候会出现刚刚说的那个错误。但是把它复制到力扣上编译就会通过。有大佬可以帮忙解决一下么



#Java##学习路径#
全部评论
我没理解错的话, 你说的应该是这么输入吧 5 4 1 3 2 5 6 之后应该输出下标[0,1]对吧 如果我没理解错的话, 那String[] temp = br.readLine().trim().split(" ");这条语句应该放在for循环外面, 否则每循环一次就向下读取一行, 肯定就不对了, 至于LeetCode上面可以通过编译, 我猜是因为LeetCode上面有多组数据集吧  另外你写的算法时间复杂度为n2  可以考虑用一个HashMap达到n的时间复杂度
点赞 回复 分享
发布于 2021-04-26 20:55

相关推荐

小米 手机电路工程师 年薪17万,显示驱动方向22.5万
点赞 评论 收藏
分享
今天 17:51
南昌大学 Java
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务