下面代码中的两个for循环循环条件一样是什么意思求解答,谢了
publicList<Double>userInflunce(double[][]relationValue){//用来存放用户的中心影响力链表List<Double>u...
public List<Double> userInflunce(double[][] relationValue) {
// 用来存放用户的中心影响力链表
List<Double> userInflunce = new ArrayList<>();
// 求每一用户的中心影响力
for (int i = 0; i < relationValue.length; i++) {
double userRelation = 0;
for (int j = 0; j < relationValue.length; j++) {
userRelation = relationValue[i][j] + userRelation;
}
//userRelation = userRelation / (relationValue.length-1);
userRelation = userRelation;
userInflunce.add(NumberUtils.formatDoubleValue(userRelation));
}
return userInflunce;
}
第二个for循环是内层循环,复制粘贴的时候出了点问题 展开
// 用来存放用户的中心影响力链表
List<Double> userInflunce = new ArrayList<>();
// 求每一用户的中心影响力
for (int i = 0; i < relationValue.length; i++) {
double userRelation = 0;
for (int j = 0; j < relationValue.length; j++) {
userRelation = relationValue[i][j] + userRelation;
}
//userRelation = userRelation / (relationValue.length-1);
userRelation = userRelation;
userInflunce.add(NumberUtils.formatDoubleValue(userRelation));
}
return userInflunce;
}
第二个for循环是内层循环,复制粘贴的时候出了点问题 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询