计算机中负数的表示法 Twos complement: Negative numbers in binary

Twos complement: Negative numbers in binary

 

二进制的负数表示法

负数的表示法:

计算机中负数的表示法 Twos complement: Negative numbers in binary

 

 

我们将第一位定义为符号位 ,1代表负数 0代表正数

 

计算机中负数的表示法 Twos complement: Negative numbers in binary

 

 

计算5+(-5) 结果是2

 

it doesn’t work,

 

 

下面我们来介绍 one’s complement

 

计算机中负数的表示法 Twos complement: Negative numbers in binary

 

 

在one’s complement中进行相加:

 

计算机中负数的表示法 Twos complement: Negative numbers in binary

 

 

结果都差了个1,

 

 

two’s complement

计算机中负数的表示法 Twos complement: Negative numbers in binary

 

 

 

(将 -0 去掉了)

 

 

 

相加的结果也是正确的

 

 

two’s complement中,位对应的值也是make sense的

 

-8 4 2 1

计算机中负数的表示法 Twos complement: Negative numbers in binary

 

 

计算方法也很简单,1.按位取反   2.加1

计算机中负数的表示法 Twos complement: Negative numbers in binary

 

上一篇:TSINGSEE青犀视频行人智能检测测试报错panic: runtime error排查过程


下一篇:leetcode-1