在时钟板上给定2次(如int),我必须计算它们之间的最小距离。
例如-

d(12,1) = 1 //not 11
d(3,5) = 2
d(10,10) = 0

最快的方法是什么?

最佳答案

如果ab112

min(abs(a - b), 12 - abs(a - b))

关于algorithm - 时钟板上2次之间的最小距离,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15856946/

10-11 16:37