【算法】三值选中法

2020-12-13 14:34

阅读:266

标签:return   负数   nbsp   div   算法   har   lse   sharp   stat   

    private static int f(int a, int b, int c) {
		if ((b - a) * (a - c) >= 0) {
			return a;
		} else if ((a - b) * (b - c) >= 0) {
			return b;
		} else {
			return c;
		}
	}

 中间值与另外两个数的差之积为负数

【算法】三值选中法

标签:return   负数   nbsp   div   算法   har   lse   sharp   stat   

原文地址:https://www.cnblogs.com/LPworld/p/11565529.html


评论


亲,登录后才可以留言!