fixing line breaks

This commit is contained in:
Jidong Xiao
2023-10-05 19:08:39 -04:00
parent 28b66195e8
commit afe4ad6bef

View File

@@ -40,7 +40,7 @@ Node<T>* prev_;
};
```
- Note that we now assume that we have both a head pointer, as before and a tail pointer variable, which stores the address of the last node in the linked list.
- Note that we now assume that we have both a head pointer as before, and a tail pointer variable, which stores the address of the last node in the linked list.
- The tail pointer is not strictly necessary, but it allows immediate access to the end of the list for efficient
push-back operations.