v*******5 发帖数: 1 | 1 I want to compare two numbers
two bits by two bits from the right to left under the Intel platform
In detail,
if the first right two bits of number 1 > first right two bits of number 2,
then number1 > number2
else,
if the first right two bits of number 1 > first right two bits of number 2,
then number1 > number2
else, and so on
E.g., number1 = 0x001000
number2 = 0x110000
In general order, number1
But according to the above comparison rule, number1 should be bigger |
|