有没有办法将Java中的列表作为二维处理?
情况: 我有一个包含节点,边和每边重量的图表。现在我需要一个数据结构来存储每个节点: a)其邻居 b)每个neigbour的边缘重量
首先,我想到创建一个带有标识符的新类“节点”和类似二维数组的东西来存储邻居标识符和边权重。但是没有给出每个节点的邻居数量,并且可能在运行时期间动态增加。因此,我认为二维数组不是这里的方式。
我认为可以在类“node”中包含如下列表:
List<node> neighbours = new ArrayList<node>();
但显然这只会处理邻居节点 - 而不是边缘的权重。
是否有人提示如何构建这样一个“图形”,其中每个节点都存储邻居的识别符和相应的边缘权重?
感谢您阅读: - )
答案 0 :(得分:4)
最直接的是使用HashMap
:
class Edge {
// represents edge with destination node and it's weight
private final Node node;
private final int weight;
Edge(Node node, int weight) {
this.node = node;
this.weight = weight;
}
}
// represents map which holds all outgoing edges keyed by source nodes.
Map<Node, Set<Edges>> edgesByOutgoingNodes = new HashMap<Node, Set<Edges>>();
答案 1 :(得分:0)
你可以这样做:
List<Connection> connections = new ArrayList<Connection>();
其中'连接'定义为:
Class Connection {
private int weight;
private Node node;
.... add getters/setters here ....
}
答案 2 :(得分:0)