当前位置:网站首页>C language - vernacular to understand the original code, inverse code and complement code
C language - vernacular to understand the original code, inverse code and complement code
2022-08-05 04:21:00 【Pointer to a PI】
Thank you for reading
Learning Catalog
Original, Inverse and Complement
1. Understand storage types
- Data is divided into byte type and word type data
Byte type data occupies 8 bits, its original code, inverse code and complement code are all 8 bits, indicating 0-255
Font type data occupies 8 bits16 bits, its original code, inverse code and complement code are all 16 bits, which means 0-65535 - Then some people will have doubts: 8-bit binary and 16-bit binary are both 1. Of course, it can represent 255 or 65535, but I can also represent -127, -32767.Now that we say that, do we have to figure out what storage method is, whether it is unsigned storage or signed storage?
- In 8 bits, if it is unsigned storage - that is, 0-255 has no negative number, if it is a signed number, it will occupy one bit by itself, so it is represented as -127-128.
So I know that our C language int type is also a signed number when it is not written unsigned, its range is -2147483648~+2147483647, and the signed number is 4,294,967,295 - So what is the source code stored?Are we talking about the original code, whether it is signed or unsigned?It is very responsible to tell you that this is a signed code, so we look at the original code of 8 digits or the original code of 16 digits, and we can see whether it is positive or negative at a glance
2. Original code, inverse code, complement code
1. Throwing out the concept of three codes
Original code: the highest bit is the sign bit, 0 represents a positive number, 1 represents a negative number, and the others are 0 or 1.Inverse code: The inverse code of a positive number is consistent with the original code, and the inverse code of a negative number is the inverse of the original code, and the sign bit remains unchanged.Complement code: The complement code of a positive number is the same as the original code, and the complement code of a negative number is to invert the original code and add 1, and the sign bit remains unchanged.Example00000001 (Decimal from the original code is 1)Example 10000001 (The decimal derived from the original code is -1??)So is it?00000001+ 10000001------------100000101+(-1) = -2??Outrageous!!!! - But I tell you responsibly, this is -1, but if you count it directly, it's definitely not like this.To perform binary addition and subtraction, it finally becomes addition.
Do we have a question, the computer -1+1 is not equal to 0 directly, so what should the computer do, how can it be equal to 0? - We want to find out 1+(-1)=0 and make it true, then we assume that -1 has a substitute, which is an eight-digit unknown x
00000001+ xxxxxxxx------------00000000- It can be obtained that if 11111111 is added to 1 and becomes 100000000, it will cause a bit overflow and lose the highest bit 1, so isn't this a decimal 0?So I'm sure that adding (-1) equals 0, that is, adding his substitute, he is 111111111
- It turned out to be like this, except for the highest bit, I invert all of them and then +1
This is also the case, the concept of complement code is also the same, that is, the original code except the highest bit is inverted and then +1, however his positive calculation process is
Example 10000001 original codeIf you want to change the complement code, you can change the inverse code before you can , inverse bit by bit, except for the sign bit of the highest bitExample 11111110 inverse codeTo change to complement code, just add 1 after the inverse code.Example 11111111 complement (original code except the highest bit is inverted and then +1)So, in a sense, this becomes 1 + (-127) = 0, but don't confuse it, it will be stressful to understand
We still understand it honestly: for calculationBoth are calculated as the complement of positive or negative numbers.
2. Final summary
The purpose of introducing the inverse code and the complement code of the original code is to solve the problem of subtraction, because there is only an adder in the arithmetic unit of the computer CPU, and the subtraction must be converted into an addition for calculation.
3. To Readers
Thank you for reading
边栏推荐
猜你喜欢

Detailed explanation of Mysql's undo log

token, jwt, oauth2, session parsing

JeeSite新建报表
![[BJDCTF2020] EasySearch](/img/60/464de3bcdda876171b9f61ad31bff1.png)
[BJDCTF2020] EasySearch

四位数显表头设计

How to wrap markdown - md file

UE4 在游戏运行时更改变量 (通过鼠标滑轮来更改第一人称角色的最大行走速度)

Learning and finishing of probability theory 8: Geometric and hypergeometric distributions

MySql index learning and use; (I think it is detailed enough)

Mysql的redo log详解
随机推荐
Day14 jenkins部署
Learning and finishing of probability theory 8: Geometric and hypergeometric distributions
使用IDEA连接TDengine服务器
DEJA_VU3D - Cesium功能集 之 057-百度地图纠偏
2022软件测试工程师最全面试题
UE4 第一人称角色模板 添加生命值和调试伤害
upload上传图片到腾讯云,如何上传图片
Mini Program_Dynamic setting of tabBar theme skin
[8.3] Code Source - [meow ~ meow ~ meow~] [tree] [and]
Machine Learning Overview
软件管理rpm
Qixi Festival code confession
BI业务分析思维:现金流量风控分析(二)信用、流动和投资风险
不看后悔,appium自动化环境完美搭建
No regrets, the appium automation environment is perfectly built
Qixi Festival earn badges
What is ASEMI photovoltaic diode, the role of photovoltaic diode
dedecms报错The each() function is deprecated
overloaded operator
[informix] Resolving startup errors and solutions