第二题我一直显示数组越界,只过了75% 有没有大佬AC的贴下代码,或者帮我看看😂 public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); Node[] nodes = new Node[n]; for(int i=0;i<n;i++){ nodes[i] = new Node(); } ...