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