Changed URL for Diagrams to Satisfy CORS (#3062)
URL change for the linked list diagrams.
This commit is contained in:
@@ -4,12 +4,12 @@
|
||||
|
||||
While `stacks` and `queues` can be implemented using `lists`, `collections.deque`, `queue.LifoQueue`, and `multiprocessing.Queue`, this exercise expects a ["Last in, First Out" (`LIFO`) stack][Baeldung: The Stack Data Structure] (_interactive example [here][LIFO Stack]_) using a _custom-made_ [singly linked list][singly linked list].
|
||||
|
||||

|
||||

|
||||
|
||||
This should not be confused with a [`LIFO` stack using a dynamic array or list][LIFO Stack Array], which may use a `list` underneath.
|
||||
Dynamic array based `stacks` have a different `head` position and different time complexity (Big-O) and memory footprint.
|
||||
|
||||

|
||||

|
||||
|
||||
See these two Stack Overflow questions for some considerations: [Array-Based vs List-Based Stacks and Queues][Stack Overflow: Array-Based vs List-Based Stacks and Queues] and [Differences between Array Stack, Linked Stack, and Stack][Stack Overflow: What is the difference between Array Stack, Linked Stack, and Stack].
|
||||
|
||||
|
||||
Reference in New Issue
Block a user