From 2c07e10ea4a69aae92341643eed22bd3945710c6 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 7 Feb 2025 13:13:03 -0500 Subject: [PATCH] adding iterator implementation code --- lectures/10_linked_lists/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lectures/10_linked_lists/README.md b/lectures/10_linked_lists/README.md index 2e493b5..240e52a 100644 --- a/lectures/10_linked_lists/README.md +++ b/lectures/10_linked_lists/README.md @@ -1,6 +1,6 @@ -# Lecture 10 --- Vector Iterators & Linked Lists +# Lecture 10 --- Iterator Implementation & Linked Lists -- Iterator Implementation +- Iterator Implementation (in Vectors) - Building our own basic linked lists: – Stepping through a list – Basic operations @@ -37,7 +37,7 @@ int main(){ ## 10.2 Iterator Implementation - +Here we extend our implemention of vector so as to include iterators. Review the written code here: [vec.h](vec.h) and [vec_main.cpp](vec_main.cpp). ## 10.3 Working towards our own version of the STL list