453. DS: when Y lies between X and Z? (Note: N>V, min( N,V )= N, max (N, V)=V. )
1) Y is the largest value of min(x,y). min(y,z). min(x,z) 2) Y is the least value of max( x,y). max( y,z). max( x,z).
首先同意此题选D,either can。 但是我有一个疑问:根据Notes N>V, min( N,V )= N, max (N, V)=V,我们就知道括号里的表达是小数在前大数在后。只要用这个准则去判断就知道(1)中min(x,y), min(y,z),y是小于z而大于x的。(2)中也是同理知道max( x,y). max( y,z),y是大于x而小于z的。至于两个条件中的Y is the largest value of min......, Y is the least value of max..不是多余的废话吗?