当我设置一个固定值时,如何为某些东西编写伪代码,并且用户输入猜测该值是什么,但他们的赢家是接近我的固定值而不会超过的值?有点像二十一点?
不知道该怎么做。
例如:如果我的固定值是 33.65,而猜测是 32.90、21.12、33.68、32.00,那么获胜者将是 32.90。
我将用Java对此进行编码。
按照其他人的建议进行排序是一种获得答案的方法,但如果您不需要按排序顺序进行猜测,这是一种相对昂贵的方法。
在基于 C 的伪代码中:
float answer = 33.65;
float guess[4] = {32.90, 21.12, 33.68, 32.00};
float best_guess = -1.0; /* none! */
float smallest_difference = answer; /* start out large! */
int num_guesses = 4;
for (int i = 0; i < num_guesses; i++) {
float difference = answer - guess;
if (difference < 0) continue; /* on to the next guess */
if (difference < smallest_difference) {
best_guess = guess;
smallest_difference = answer - guess);
}
}
printf("The best guess was %f\n", best_guess);
在 Java 中进行这项工作应该是一个简单的练习。
按升序对数组进行排序,然后向后遍历数组。返回小于或等于固定值的第一个值。
在 python-esque 伪代码中
fixed_value = 4
arr = [9, 4, 5, 6, 3, 7, 8, 1, 2]
sort(arr)
>>> arr = [1, 2, 3, 4, 5, 6, 7, 8, 9]
for value in arr:
if value <= fixed_value:
return value
>>> 4
你可以:
要对列表进行排序,请根据差异使用 to Collections.sort()
。Comparator