gpt4 book ai didi

java - 如何在 java 中创建一个链表数组?

转载 作者:搜寻专家 更新时间:2023-10-30 19:52:41 25 4
gpt4 key购买 nike

所以我需要像这样输入二分图的边:

6
1 3
1 2
1 5
2 7
2 4
2 9

第一个数字是边的数量。之后列出边。看看例如顶点 1 如何有多个不同的边,我想跟踪 1 连接到什么,我在想图形的每个顶点都会有某种顶点列表,它连接到这让我尝试创建一个链表数组,但我不确定我会怎么做。我试过了

LinkedList<Integer>[] vertex = new LinkedList[5];
int i = 0, m = 6;
while(i!=m){
int temp = sc.nextInt();
int temp2 = sc.nextInt();
vertex[temp].add(temp2);
i++;
}

但是我在添加行得到一个空指针异常。

最佳答案

LinkedList<Integer>[] vertex = new LinkedList[5];
int i = 0, m = 6;
while(i!=m){
int temp = sc.nextInt();
int temp2 = sc.nextInt();

// Make sure the list is initialized before adding to it
if (vertex[temp] == null) {
vertex[temp] = new LinkedList<Integer>();
}

vertex[temp].add(temp2);
i++;
}

关于java - 如何在 java 中创建一个链表数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20202889/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com