From 6671621000d4ce0be2233ff1bd1a93ef24f24f30 Mon Sep 17 00:00:00 2001 From: zivvvv Date: Thu, 23 Mar 2023 16:36:34 +0800 Subject: [PATCH] fix(too-many-lists): wrong translation; --- src/too-many-lists/bad-stack/layout.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/too-many-lists/bad-stack/layout.md b/src/too-many-lists/bad-stack/layout.md index e5e8c2a5..aa1bdc84 100644 --- a/src/too-many-lists/bad-stack/layout.md +++ b/src/too-many-lists/bad-stack/layout.md @@ -196,7 +196,7 @@ struct Node { } ``` -从代码层面看,貌似多了一层封装,但是实际上 `List` 只有一个字段,因此结构体的大小跟字段大小是相等的,没错,传说中的零抽象数据结构! +从代码层面看,貌似多了一层封装,但是实际上 `List` 只有一个字段,因此结构体的大小跟字段大小是相等的,没错,传说中的零开销抽象! 至此,一个令人满意的数据布局就已经设计完成,下面一起来看看该如何使用这些数据。