From dbb48b9aa15fda403043186479df824ee592e127 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 11 Feb 2025 13:48:39 -0500 Subject: [PATCH] add the comparison --- lectures/11_list_implementation/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/lectures/11_list_implementation/README.md b/lectures/11_list_implementation/README.md index 5afe45a..1b67913 100644 --- a/lectures/11_list_implementation/README.md +++ b/lectures/11_list_implementation/README.md @@ -13,9 +13,6 @@ | **Fast random access required** | ✅ | ❌ | | **Memory efficiency is important** | ✅ | ❌ | | **Iterators should remain valid** | ❌ | ✅ | -| **Heavy insertions/deletions at the end** | ✅ | ✅ (but `std::vector` is better) | -| **Cache locality and performance are important** | ✅ | ❌ | -| **Large number of elements (better memory utilization)** | ✅ | ❌ | ## 11.1 Basic Linked Lists Mechanisms: Common Mistakes