我正在尝试使用蛮力创建递归算法。如果比较的整数不相似,则该算法假设比较整数并“编辑距离”。例如:3254 应该是 2345。这里的 editDistance 应该是 2 [(3,2)(5,4)]。我的代码编译但它没有给我任何输出。如果有人可以帮助我排除故障,将不胜感激。public static int measureEditDistance(int[] rankings) { int editDistance = 0; int R = rankings.length; // You need to write this method. // Add your logic here to compute the editDistance for (int m = 0; m < R; m++) { for (int i = m + 1; i < R; i++) { for (int j = i + 1; j < R; j++) { if (rankings[m] + rankings[i] + rankings[j] == 0) { editDistance++; } } } } return editDistance;}
添加回答
举报
0/150
提交
取消