gpt4 book ai didi

algorithm - 编写一个算法,在 a、b 和 c 中找到第二小的值

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:46:51 26 4
gpt4 key购买 nike

如何在Java中找到a、b、c中第二小的值?

Find-2nd-Smallest (n: array)  
smallest : infinity
2nd-smallest : infinity
for each i in n
if i < smallest
2nd-smallest = smallest
smallest = i
else if i < 2nd-smallest
2nd-smallest = i
return 2nd-smallest

我如何让它为 (a,b,c) 工作?我很困惑如何获得只有 3 个字母的值。

最佳答案

您提供的伪代码中的函数查找数组中的最小值和第二小值。

在数组 {a,b,c} 上运行它。

关于algorithm - 编写一个算法,在 a、b 和 c 中找到第二小的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18819028/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com