search
HomeCommon ProblemIs the machine number the original code or the complement code?

The machine number is both the original code and the complement code. The signed binary numbers represented in computers are called machine numbers. Machine numbers include three representations: original code, one's complement and complement. The original code is a binary number with a sign bit added. The sign bit of a positive number is 0, the sign bit of a negative number is 1, and the sign bit is the highest bit; the complement of a positive number is its original code, and the complement of a negative number is the sign bit. The other bits are unchanged, and the other bits are inverted; the complement of a positive number is its original code, and the complement of a negative number is the complement of 1.

Is the machine number the original code or the complement code?

The operating environment of this tutorial: Windows 7 system, Dell G3 computer.

1. Machine number


After understanding the machine number, we found that the machine number includes "source code", "reverse code", and "complement code" Representation form;

Because the machine number refers to the binary representation of a number in the computer. The first bit of the machine number is the sign bit. The sign bit of a positive number is "0" and the sign of a negative number. bit is "1".

For example: The number of machines for 5 is: 00000101

The number of machines for -5 is: 10000101 (taking 8-bit binary as an example)

And "source code", "reverse Code" and "complement code" have the same representation form, and their relationship will be introduced in detail next.

2.True value


True value refers to the real value corresponding to the machine number with sign bit.

For true values, they are generally expressed in decimal notation, but can also be expressed in binary. True values ​​are rarely expressed in other bases.

For example: The true value of 10000101 = -0000101 = -5

The true value of 00000101 = 0000101 = 5

3. Original code

The original code is a binary number with a sign bit added. The sign bit of positive numbers is 0, the sign bit of negative numbers is 1, and the sign bit is the highest bit. My personal understanding is to convert " " in the true value to 0 and "-" to 1.

The representation of the original code is that the first bit is the sign bit plus the absolute value of the true value.

For example: -000101 (true value) = 10000101 (original code)

        00000101 (true value) = 00000101 (original code)

Because the first bit is the sign bit , so the range of the original code in 8-bit binary is:

11111111~01111111 That is -127~127

The original code is the easiest representation for the brain to understand and calculate.

4. Inverse code

The complement of a positive number is itself; the complement of a positive number is its original code, and the complement of a negative number is the symbol The bit remains unchanged, and the other bits are inverted (0 becomes 1, and 1 becomes 0). The complement code of a negative number is that the sign bit remains unchanged, and the other bits are inverted.

The inverse code is based on the original code. If it is a positive number, it is the same as the original code. If it is a negative number, the first sign remains unchanged and the remaining values ​​are inverted.

For example: 00000101 (original code) = 00000101 (reverse code)

10000101 (original code) = 11111010 (reverse code)

Reverse code is not easy for the brain to understand. It is usually converted into original code and then calculated.

5. Complement code

The complement code is based on the original code. If it is a positive number, it is the same as the original code. If it is a negative number, except for the first symbol, The remaining values ​​are inverted (one's complement code), and based on it, it is 1.

For example: 00000101 (original code) = 00000101 (reverse code) = 00000101 (complementary code)

10000101 (original code) = 11111010 (reverse code) = 10000011 (complementary code)

For negative numbers, the human brain cannot intuitively see the value in the two's complement representation, and usually it is necessary to convert it into the original code and then calculate the value.

6. The process of using original code, inverse code and complement code


It is easy to understand using only the original code, but for computers, it is necessary to distinguish the first Positive and negative consume a lot of resources, so people found ways to use sign bits to participate in operations.

We know that according to the algorithm, subtracting a positive number is equivalent to adding a negative number, that is: 1-1 = 1 (-1) = 0, so the machine can only add but not subtract, so The design of computer operations is even simpler.

Exploration Plan 1.0 (original code):

1 (-1) = 0

00000001 (original code) 10000001 (original code) = 10000010 (original code) = -2

Exploration of original code calculation plan failed

Additional investment!

Exploration plan version 2.0 is released (reverse code):

00000001 (original code) 10000001 (original code) = 00000001 (reverse code) 11111110 (reverse code) = 11111111 (reverse code) = 10000000 (original code) = -0

Update description: Solve the problem of the first symbol participating in the operation, which greatly reduces the resources consumed by the computer for binary operations, but "0" and "-0" appear Repeated situations can be improved!

Exploration plan version 3.0 is released (complementary code):

00000001 (original code) 10000001 (original code) = 00000001 (reverse code) 11111110 (reverse code) = 00000001 (complementary code) 11111111 (Complementary code) = 00000000 (Complementary code) = 00000000 (Original code) = 0

Append: (-1) (-127) = (-128)

10000001 (Original code) 11111111 (original code) = 11111110 (reverse code) 10000000 (reverse code) = 11111111 (complementary code) 10000001 (complementary code) = 10000000 (complementary code) = -128

Update description: Solve the problem of version 2.0 A meaningless binary "-0", the binary range is further expanded from version 1.0 (-127~127) to (-128~127). The same principle can also be used for other binary bits

For example: int has 4 bytes and 32 bits, and the range represented is (-2^31~2^31-1)

Since version 3.0 is more in line with the concept of environmental protection, it is the best choice for computers to store binary select.

For more related knowledge, please visit the FAQ column!

The above is the detailed content of Is the machine number the original code or the complement code?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
deepseek web version official entrancedeepseek web version official entranceMar 12, 2025 pm 01:42 PM

The domestic AI dark horse DeepSeek has risen strongly, shocking the global AI industry! This Chinese artificial intelligence company, which has only been established for a year and a half, has won wide praise from global users for its free and open source mockups, DeepSeek-V3 and DeepSeek-R1. DeepSeek-R1 is now fully launched, with performance comparable to the official version of OpenAIo1! You can experience its powerful functions on the web page, APP and API interface. Download method: Supports iOS and Android systems, users can download it through the app store; the web version has also been officially opened! DeepSeek web version official entrance: ht

In-depth search deepseek official website entranceIn-depth search deepseek official website entranceMar 12, 2025 pm 01:33 PM

At the beginning of 2025, domestic AI "deepseek" made a stunning debut! This free and open source AI model has a performance comparable to the official version of OpenAI's o1, and has been fully launched on the web side, APP and API, supporting multi-terminal use of iOS, Android and web versions. In-depth search of deepseek official website and usage guide: official website address: https://www.deepseek.com/Using steps for web version: Click the link above to enter deepseek official website. Click the "Start Conversation" button on the homepage. For the first use, you need to log in with your mobile phone verification code. After logging in, you can enter the dialogue interface. deepseek is powerful, can write code, read file, and create code

How to solve the problem of busy servers for deepseekHow to solve the problem of busy servers for deepseekMar 12, 2025 pm 01:39 PM

DeepSeek: How to deal with the popular AI that is congested with servers? As a hot AI in 2025, DeepSeek is free and open source and has a performance comparable to the official version of OpenAIo1, which shows its popularity. However, high concurrency also brings the problem of server busyness. This article will analyze the reasons and provide coping strategies. DeepSeek web version entrance: https://www.deepseek.com/DeepSeek server busy reason: High concurrent access: DeepSeek's free and powerful features attract a large number of users to use at the same time, resulting in excessive server load. Cyber ​​Attack: It is reported that DeepSeek has an impact on the US financial industry.

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version