From f4dde84161d826803aad9c6f6e8d5a2a2d297e13 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 25 Sep 2023 22:25:52 -0400 Subject: [PATCH] fixing format --- lectures/08_vector_implementation/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lectures/08_vector_implementation/README.md b/lectures/08_vector_implementation/README.md index 272531f..a258551 100644 --- a/lectures/08_vector_implementation/README.md +++ b/lectures/08_vector_implementation/README.md @@ -1,12 +1,12 @@ # Lecture 8 --- Templated Classes & Vector Implementation -Designing our own container classes: -– Mimic the interface of standard library (STL) containers -– Study the design of memory management. -– Move toward eventually designing our own, more sophisticated classes. - - Vector implementation - - Templated classes (including compilation and instantiation of templated classes) - - Copy constructors, assignment operators, and destructors +- Designing our own container classes: + – Mimic the interface of standard library (STL) containers + – Study the design of memory management. + – Move toward eventually designing our own, more sophisticated classes. +- Vector implementation +- Templated classes (including compilation and instantiation of templated classes) +- Copy constructors, assignment operators, and destructors ## 8.1 Vector Public Interface