diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 6699dce4..6831419c 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -155,8 +155,14 @@ - [手把手带你实现链表 doing](too-many-lists/intro.md) - [我们到底需不需要链表](too-many-lists/do-we-need-it.md) - - + - [Bad Stack](too-many-lists/bad-stack/intro.md) + - [Layout](too-many-lists/bad-stack/layout.md) + - [New](too-many-lists/bad-stack/new.md) + - [Ownership 101](too-many-lists/bad-stack/ownership.md) + - [Push](too-many-lists/bad-stack/push.md) + - [Pop](too-many-lists/bad-stack/pop.md) + - [Drop](too-many-lists/bad-stack/drop.md) + - [Final Code](too-many-lists/bad-stack/final-code.md) - [易混淆概念解析](confonding/intro.md) - [切片和切片引用](confonding/slice.md) - [Eq 和 PartialEq](confonding/eq.md) diff --git a/src/too-many-lists/bad-stack/drop.md b/src/too-many-lists/bad-stack/drop.md new file mode 100644 index 00000000..c6ecf823 --- /dev/null +++ b/src/too-many-lists/bad-stack/drop.md @@ -0,0 +1 @@ +# Drop diff --git a/src/too-many-lists/bad-stack/final-code.md b/src/too-many-lists/bad-stack/final-code.md new file mode 100644 index 00000000..4f861c9b --- /dev/null +++ b/src/too-many-lists/bad-stack/final-code.md @@ -0,0 +1 @@ +# Final Code diff --git a/src/too-many-lists/bad-stack/intro.md b/src/too-many-lists/bad-stack/intro.md new file mode 100644 index 00000000..257b8283 --- /dev/null +++ b/src/too-many-lists/bad-stack/intro.md @@ -0,0 +1 @@ +# Bad Stack diff --git a/src/too-many-lists/bad-stack/layout.md b/src/too-many-lists/bad-stack/layout.md new file mode 100644 index 00000000..412c1cf0 --- /dev/null +++ b/src/too-many-lists/bad-stack/layout.md @@ -0,0 +1 @@ +# Layout diff --git a/src/too-many-lists/bad-stack/new.md b/src/too-many-lists/bad-stack/new.md new file mode 100644 index 00000000..e65f941e --- /dev/null +++ b/src/too-many-lists/bad-stack/new.md @@ -0,0 +1 @@ +# New diff --git a/src/too-many-lists/bad-stack/ownership.md b/src/too-many-lists/bad-stack/ownership.md new file mode 100644 index 00000000..69919a97 --- /dev/null +++ b/src/too-many-lists/bad-stack/ownership.md @@ -0,0 +1 @@ +# Ownership 101 diff --git a/src/too-many-lists/bad-stack/pop.md b/src/too-many-lists/bad-stack/pop.md new file mode 100644 index 00000000..6cf97b95 --- /dev/null +++ b/src/too-many-lists/bad-stack/pop.md @@ -0,0 +1 @@ +# Pop diff --git a/src/too-many-lists/bad-stack/push.md b/src/too-many-lists/bad-stack/push.md new file mode 100644 index 00000000..f70a7f28 --- /dev/null +++ b/src/too-many-lists/bad-stack/push.md @@ -0,0 +1 @@ +# Push