二进制文件签名_二进制数的签名表示

二进制文件签名

Prerequisite: Number systems

先决条件: 数字系统

Until now, we have only talked about positive numbers and have already discussed their mathematical operations. But there also exists negative numbers in the number system, in this article we are going to learn about how to represent negative numbers in the binary format?

到目前为止,我们仅讨论正数,并且已经讨论了它们的数学运算。 但是数字系统中也存在负数,在本文中,我们将学习如何用二进制格式表示负数?

签名号码 (Signed Numbers)

In decimal number system, we have (+) sign to represent the positive number and (-) sign to represent a negative number. But in digital logic, we have two symbols 0 and 1, so we use these symbols to represent the sign of the number.

在十进制数字系统中,我们用( + )号代表正数,用( - )号代表负数。 但是在数字逻辑中,我们有两个符号01 ,因此我们使用这些符号来表示数字的符号

There are two ways of representing signed numbers,

有两种表示带符号的数字的方式

  1. Signed Magnitude Form

    签名幅度表

  2. Complement Form

    补表

1)签署幅度表 (1) Signed Magnitude Form)

In signed magnitude form, an additional bit is placed to the extreme left (MSB) of the number to represent the sign; thus, it is known as the sign bit.

在带符号的幅度形式中,在数字的最左端(MSB)处放置一个附加位来表示符号。 因此,它被称为符号位。

We use 0 to represent the positive numbers and 1 to represent the negative numbers. The extra bit is isolated from the magnitude of binary numbers using a comma.

我们用0代表正数,用1代表负数。 使用逗号将多余的位与二进制数的大小隔离。

Under the signed-magnitude system, a great amount of manipulation is required to add a positive number to a negative number. Thus, representation is possible but still, it is impractical in nature.

在有符号幅度系统下,需要大量的操作才能将正数添加到负数。 因此,表示是可能的,但在本质上仍然是不切实际的。

Example1: Represent 13 and -13 in signed magnitude form

示例1:以带符号的幅度形式表示13和-13

Solution:

解:

     (13)10 = (0,1101)2   sign-bit 0 is used to represent the positive number
(-13)10 = (1,1101)2  sign-bit 1 is used to represent the negative number

Complement Form: Since performing arithmetic operations using a signed magnitude form is very complex. Digital computers use the complement form to perform these calculations.

补码形式:由于使用带符号的幅度形式执行算术运算非常复杂。 数字计算机使用补码形式来执行这些计算。

There are two complement forms - 1's complement form and 2's complement form.

有两种补码形式-1的补码形式和2的补码形式。

If the number is positive then, the magnitude is represented in its true binary form and a sign bit 0 is added to the LHS of the MSB. For a positive number, the representation is the same in signed magnitude, 1's and 2's complement form.

如果该数字为正,则以其真正的二进制形式表示幅度,并将符号位0添加到MSB的LHS。 对于正数,表示形式在带符号的幅度,1和2的补码形式上相同。

The advantage of using a complement form to perform arithmetic operations is the reduction in the hardware. Instead, of having separate hardware for addition and subtraction only additional adders are needed.

使用补码形式执行算术运算的优点是减少了硬件。 取而代之的是,没有用于加法和减法的单独硬件,仅需要附加的加法器。

1的补码表示 (1's Complement Representation)

The 1's complement of a number can be obtained by replacing each "0 bit with 1 bit" and "1 bit with 0 bit" in the binary number.

可以通过将二进制数中的每个“ 0位加1位”“ 1位加0位”替换来获得数字的1的补码。

Example: Represent (-15)10 in its 1's complement form

示例:以其1的补码形式表示(-15) 10

Solution:

解:

(15)10 in binary form can be represented as (1111)2.

(15) 10的二进制形式可以表示为(1111) 2

Now, to represent its negative sign, we will add a sign bit 1.

现在,为了表示它的负号,我们将添加一个符号位1。

Thus, (-15)10 = (1,1111)2. To represent it in 1's complement form, we will replace each 1 with 0 (excluding the sign bit, because if we replace sign bit then its sign will be changed to positive which is not correct). Therefore,

因此,(-15) 10 =(1,1111) 2 。 为了用1的补码形式表示它,我们将每个1替换为0(不包括符号位,因为如果替换符号位,则其符号将变为正数,这是不正确的)。 因此,

signed representation of binary numbers Example 1

2的补码表示 (2's Complement Representation)

We can get the 2's complement of a number by finding the 1's complement of number and adding 1 to the LSB of the respective 1's complement.

我们可以通过找到数字的1的补码并将1加到相应的1的补码的LSB上来获得数字的2的补码。

Example: Represent (-15)10 in its 2's complement form.

示例:以2的补码形式表示(-15) 10

Solution:

解:

As we have discussed above, the 1's complement representation of (-15)10 is given as 10000. Now, we have to add a bit 1 to the LSB in the above 1's complement form i.e., we will get,

如上所述,(-15) 10的1的补码表示为10000 。 现在,我们必须以上述1的补码形式在LSB上加一位,即,

signed representation of binary numbers Example 2

Which is the required 2's complement representation of (-15)10.

这是(-15) 10的必填2的补码表示形式。

Example: Represent (-51)10 in its signed magnitude, 1's complement and 2's complement form.

示例:以(-51) 10的有符号幅度,1的补码和2的补码形式表示。

Solution:

解:

signed representation of binary numbers Example 3

翻译自: https://www.includehelp.com/basics/signed-representation-of-binary-numbers.aspx

二进制文件签名

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378444.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【智能车Code review】——坡道图像与控制处理

博主联系方式: QQ:1540984562 QQ交流群:892023501 群里会有往届的smarters和电赛选手,群里也会不时分享一些有用的资料,有问题可以在群里多问问。 系列文章 【智能车Code review】—曲率计算、最小二乘法拟合 【智能车Code review】——坡道图像与控制处理 【智能车Code re…

六、解释红外线纺织品的保健、保暖作用?

解释红外线纺织品的保健、保暖作用? 收集资料阶段 人体既是远红外的辐射源又能吸收远红外辐射。由于人体60%~70%为水‚故人体对红外辐射吸收近似于水,人体组织所拥有的特定振动频率和回转周波数与人体组织中的O&…

linux yum命令作用,YUM命令使用示例

YUM或Yellowdog Updater Modified是管理rpm包的前端工具。 它用于通过命令行界面或使用图形模式来安装,删除,更新和收集有关rpm软件包的信息。 使用YUM的主要优点是,它解决了rpm包的所有依赖关系,并将它们与包一起安装。下面让我们…

PySide开发MySql远程备份工具

MySql数据库安装在机房,而工作人员日常办公的地方距离机房有段距离,且不在同一楼层。出入机房不是很方便。就想着能否给这些人员开发一个图形化的备份MySql数据库的小工具?使用组件如下:(1)Python(2)PySide(3)mysqldump其实mysql已…

HadoopSourceAnalyse --- Nodemanager Container request handler

Overview Container 是Hadoop中运行任务的地方,当Resourcemanager收到一任务请求后,会向nodemanager 请求一个Container 来运行ApplicationMaster, ApplicationMaster运行起来之后,会继续向Resourcemanager请求新的container来运行…

数据结构 二叉树的存储结构_线程二叉树| 数据结构

数据结构 二叉树的存储结构线程二叉树 (Threaded Binary Tree ) A binary tree can be represented by using array representation or linked list representation. When a binary tree is represented using linked list representation. If any node is not having a child …

七、有机硅柔软剂在不同发展阶段分子结构特征及主要解决的问题?

有机硅柔软剂在不同发展阶段分子结构特征及主要解决的问题? 收集资料阶段 聚有机硅氧烷具有低表面能、优良的润滑性、热稳定性和疏水性。从分子层面分析,经聚有机硅氧烷处理的织物,其柔软性来自硅氧烷骨架中 Si—O—Si键的 360自由旋转及甲基之间的低相互作用。因此,聚有机…

【智能车Code review】——拐点的寻找

博主联系方式: QQ:1540984562 QQ交流群:892023501 群里会有往届的smarters和电赛选手,群里也会不时分享一些有用的资料,有问题可以在群里多问问。 系列文章 【智能车Code review】—曲率计算、最小二乘法拟合 【智能车Code review】——坡道图像与控制处理 【智能车Code re…

linux 单例模式改密码,Java 利用枚举实现单例模式

引言单例模式比较常见的实现方法有懒汉模式,DCL模式公有静态成员等,从Java 1.5版本起,单元素枚举实现单例模式成为最佳的方法。Java枚举基本用法枚举的用法比较多,本文主要旨在介绍利用枚举实现单例模式的原理,所以这里…

编码简介

编码简介最近被字符集搞得头大,基于为自己扫盲的目的,索性收集资料研究一下,现将各方资料归纳成本文。这里并不想把复杂的规则说明一大通。如有需要,请参照其他资料或本文给出的参考资料。 如有错误,欢迎指正。…

2013年5月7日---JS中的正则

/*(1)RegExp对象的test方法------------------C#中的isMatchvar num1d23; //一个字符串var regnew RegExp(^\\d$); //准备正则alert(reg.test(num)); //开始匹配并弹出--false*//*(2)ReExp对象的test方法var num123;var regnew RegExp(/^\d$/);ale…

八、关于防水透湿整理

1,防水透湿整理加工技术的类型? 收集资料阶段 按照加工方式分类 防水透湿织物按照加工方式可分为高密织物、涂层织物和层压织物。不同加工方式所对应的织物各有特色。高密织物产生于 20 世纪 80 年代,它的密度可达到普通织物的 20 倍。在晴朗天气时,纱线孔隙大约为 10 μm…

linux qt 音频文件怎么打开,Qt:获取Linux中可用音频设备的列表

我想要获取我的Linux系统上可用的所有音频设备的列表。然后我会将这个列表显示在一个组合框中,用户将从中选择用于录制/播放的设备。根据用户的选择,我将构建QAudioInput和QAudioOutput进行录制/播放。Qt:获取Linux中可用音频设备的列表根据Q…

c# uri.host_C#| Uri.GetLeftPart()方法与示例

c# uri.hostUri.GetLeftPart()方法 (Uri.GetLeftPart() Method) Uri.GetLeftPart() method is an instance method that is used to get a specified part from the given URI based on passed UriPartial enum. Uri.GetLeftPart()方法是一个实例方法,用于基于传递的…

求质数算法的N种境界 (N 10) zz

★引子 前天,俺在《俺的招聘经验[4]:通过笔试答题能看出啥?》一文,以"求质数"作为例子,介绍了一些考察应聘者的经验。由于本文没有政治敏感内容,顺便就转贴到俺在CSDN的镜像博客。   昨天&…

【智能车Code review】——小S与中S道路判断

博主联系方式: QQ:1540984562 QQ交流群:892023501 群里会有往届的smarters和电赛选手,群里也会不时分享一些有用的资料,有问题可以在群里多问问。 系列文章 【智能车Code review】—曲率计算、最小二乘法拟合 【智能车Code review】——坡道图像与控制处理 【智能车Code re…

Python匿名函数---排序

一、列表的排序 nums [1,2,3,5,4,7,87,4,9,56,44,7,5] nums.sort()#默认从小到大排序 nums#结果为:[1, 2, 3, 4, 4, 5, 5, 7, 7, 9, 44, 56, 87]nums [1,2,3,5,4,7,87,4,9,56,44,7,5] nums.sort(reverseTrue)#从大到小排序 nums#结果为:[87, 56, 44, …

linux 内核编译需要多大空间,编译2.6.28内核出错。。。。空间不足。而/tmp/还有好几G...

编译2.6.28内核出错。。。。空间不足。而/tmp/还有好几G发布时间:2009-01-02 16:56:47来源:红联作者:weixq316今天闲来无事,就去下载了最新的内核--2.6.28来编译安装。。。:0)1放在/usr/src/2.6.28/中编译。。。。。我的/usr还有1G多的空间。…

如何用vi 复制第5行到第10行并粘贴到第12行之后

方法一: 光标放到第五行,输入:y6y光标放到第12行,输入:p方法二:命令行模式下输入:5,10 co 12方法三:延伸一下, 有时候不想费劲看多少行或复制大量行时,可以使用标签来替代光标移到起…

go zap去除程序名称_适用于Zip,Zap和Zoom游戏的Python程序

go zap去除程序名称Write a python program that displays a message as follows for a given number: 编写一个python程序,显示给定数字的消息如下: If it is a multiple of three, display "Zip". 如果是三的倍数,则显示“ Zip…