假设我有这些课程:
public class EdgeI {
public int from;
public int to;
public EdgeI (int a1, int a2) {
from = a1;
to = a2;
}
}
public class VertexI {
public List neighbors;
public String info;
public VertexI (List neig, String str) {
neighbors = neig;
info = str;
}
}
public class vertexWeight {
public int v;
public int w;
public vertexWeight (int vertexNum, int wum) {
v = vertexNum;
w = wum;
}
}
假设我有一个EdgeI
包含数字对的对象列表。假设我还有一个VertexI
包含空列表和字符串的对象列表。我想将以下内容添加到空列表中:
假设我将此作为我的 EdgeI 对象列表
(1,2), (1,2) (1,2), (1,3), (1,3), (1,4)
对于VertexI
列表中的第一个对象,我想添加以下列表
(2,3) (3,2)
到顶点对象。基本上我想取“to”整数和“to”整数重复的次数,并创建vertexWeight
要添加到类列表中的neig
对象VertexI
。所以neig
对于第一个VertexI
对象将是vertexWeight
对象(2,3)
和(3,2)
。为了实现这一点,我创建了这个到目前为止:
public void createGraph () {
int oldFrom = -1;
int oldTo = -1;
for(int i = 0; i < edges.size(); i++) {
EdgeI e = edges.get(i);
int from = e.from;
int to = e.to;
VertexI v = vertices.get(from);
v.neighbors.add(new vertexWeight (to, 1));
if (from == oldFrom && to == oldTo){}
//have to add increment the number 1 in the vertex weight object somehow
else {
oldFrom = from;
oldTo = to;
}
}
}
我需要一些技巧或方法来实现这个吗?我的逻辑可能不正确,这就是我认为最需要帮助的地方。