如何用java实现最大边际相关算法mmr算法
发布网友
发布时间:2022-06-04 06:45
我来回答
共1个回答
热心网友
时间:2023-10-27 04:59
可以使用冒泡排序,最值在两端(得到最大值和最小值),多少个数字都不是问题
int score[] = {20, 50, 15, 66, 35, 40, 80, 67};
for (int i = 0; i < score.length -1; i++){
for(int j = 0 ;j < score.length - i - 1; j++){
if(score[j] < score[j + 1]){
int temp = score[j];
score[j] = score[j + 1];
score[j + 1] = temp;
}
}
System.out.print("第" + (i + 1) + "次排序结果:");
for(int a = 0; a < score.length; a++){
System.out.print(score[a] + "\t");
}
System.out.println("");
}
System.out.print("最终排序结果:");
for(int a = 0; a < score.length; a++){
System.out.print(score[a] + "\t");
}
System.out.println();
System.out.println("最大值:"+score[0]);
System.out.println("最小值:"+score[score.length-1]);