Polish the chapter of heap, introduction, preface.

Replace "其它" with "其他"
This commit is contained in:
krahets
2023-04-09 19:12:37 +08:00
parent 10e2180013
commit 0bec52d7cc
29 changed files with 185 additions and 161 deletions

View File

@ -37,7 +37,7 @@
3. 当所有 bits 为 0 时代表数字 $0$ ,从零开始增大,可得最大正数为 $2^{31} - 1$
4. 剩余 $2^{31}$ 个数字全部用来表示负数,因此最小负数为 $-2^{31}$ ;具体细节涉及“源码、反码、补码”的相关知识,有兴趣的同学可以查阅学习;
整数类型 byte, short, long 的取值范围的计算方法与 int 类似,在此不再赘述。
整数类型 byte, short, long 的取值范围的计算方法与 int 类似,在此不再赘述。
### 浮点数表示方式 *