From f4034546cc214fb383e1d6a5ad3fc4e734b861a9 Mon Sep 17 00:00:00 2001 From: William Mantly Date: Thu, 1 Feb 2024 04:15:50 +0000 Subject: [PATCH] Update 1-linked-list/README.md --- 1-linked-list/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-linked-list/README.md b/1-linked-list/README.md index cafebf0..437fd67 100644 --- a/1-linked-list/README.md +++ b/1-linked-list/README.md @@ -6,7 +6,7 @@ CS50 on [Linked Lists](https://www.youtube.com/watch?v=5nsKtQuT6E8) A linked list is a common data structure, where nodes are grouped to form a sequence. Each node holds data and a pointer to another node. -###Visualization +### Visualization |42|-> |55|-> |4|-> |39|-> None @@ -23,7 +23,7 @@ For example, to insert `|79|` after `|4|` in the list above, pseudocode would lo -###Implementation +### Implementation Do not use lists or dictionaries. That's cheating. Create this using classes only. You will want a Node class and a LinkedList class.