У меня есть два объекта, и я сравниваю их строки, используя алгоритм. Мне нужно сохранить результат, два объекта и лучшие значения. Любые предложения?
void getDistances(Class m1, Class m2) {
Vector[] vector1 = new Vector[m1.getSize()]; // Object from my class
Vector[] vector2 = new Vector[m2.getSize()]; // Object from my class
for (int i = 0; i < vector1.length; i++) {
Class current;
Class next;
current = m1.getInfo(i);
for (int j = 0; j < vector2.length; j++) {
prox = m2.getInfo(j);
calcDist = lev.distance(current.getLabel(), next.getLabel());
System.out.println(current + " <-> " + next + " = " + df.format(calcDist));
if(something here){
// I think it's here the logic ...
}
}
}
}
Любая идея поможет мне. Спасибо.