From f73231568c05227e8b015814cb1af49578600486 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=86=E9=99=86=E4=BE=A0?= <306924625@qq.com> Date: Thu, 26 Jan 2023 15:13:29 +0800 Subject: [PATCH] =?UTF-8?q?typo:=20=E5=8F=8C=E5=BC=95=E5=8F=B7=20(#295)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/chapter_data_structure/data_and_memory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chapter_data_structure/data_and_memory.md b/docs/chapter_data_structure/data_and_memory.md index 45c7c8a10..413841059 100644 --- a/docs/chapter_data_structure/data_and_memory.md +++ b/docs/chapter_data_structure/data_and_memory.md @@ -13,7 +13,7 @@ comments: true - 「整数」根据不同的长度分为 byte, short, int, long ,根据算法需求选用,即在满足取值范围的情况下尽量减小内存空间占用; - 「浮点数」代表小数,根据长度分为 float, double ,同样根据算法的实际需求选用; - 「字符」在计算机中是以字符集的形式保存的,char 的值实际上是数字,代表字符集中的编号,计算机通过字符集查表来完成编号到字符的转换。占用空间与具体编程语言有关,通常为 2 bytes 或 1 byte ; -- 「布尔」代表逻辑中的 ”是“ 与 ”否“ ,其占用空间需要具体根据编程语言确定,通常为 1 byte 或 1 bit ; +- 「布尔」代表逻辑中的 “是” 与 “否” ,其占用空间需要具体根据编程语言确定,通常为 1 byte 或 1 bit ; !!! note "字节与比特"