From 62f30d5f3e676c4053e46d209b7261a173092c0e Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 13 Feb 2024 13:07:20 -0500 Subject: [PATCH] indentation --- lectures/11_list_implementation/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lectures/11_list_implementation/README.md b/lectures/11_list_implementation/README.md index de1d9d7..4bc26c8 100644 --- a/lectures/11_list_implementation/README.md +++ b/lectures/11_list_implementation/README.md @@ -32,11 +32,11 @@ trying to use ->next and ->prev with STL list iterators.) ```cpp template class Node { public: -Node() : next_(NULL), prev_(NULL) {} -Node(const T& v) : value_(v), next_(NULL), prev_(NULL) {} -T value_; -Node* next_; -Node* prev_; + Node() : next_(NULL), prev_(NULL) {} + Node(const T& v) : value_(v), next_(NULL), prev_(NULL) {} + T value_; + Node* next_; + Node* prev_; }; ```