Skip to content

Commit 949af15

Browse files
committed
Docs: Add blog post links
1 parent 81886e5 commit 949af15

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ These are the most recent blog posts covering the most recent version of the cod
5858
### Data Structures
5959

6060
* [Linked List](https://humanwhocodes.com/blog/2019/01/computer-science-in-javascript-linked-list/)
61+
* [Doubly-Linked List](https://humanwhocodes.com/blog/2019/02/computer-science-in-javascript-doubly-linked-lists/)
62+
* [Circular Doubly-Linked List](https://humanwhocodes.com/blog/2019/03/computer-science-in-javascript-circular-doubly-linked-lists/)
6163

6264
## Original Blog Posts
6365

src/data-structures/circular-doubly-linked-list/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ A JavaScript implementation of a circular doubly linked list. This class uses th
1313
1. Defining a `values()` generator method.
1414
1. Returning `undefined` from `get()` when no such index exists.
1515

16+
Read the [blog post](https://humanwhocodes.com/blog/2019/03/computer-science-in-javascript-circular-doubly-linked-lists/) about the design of this class.
17+
1618
## Usage
1719

1820
Use CommonJS to get access to the `CircularDoublyLinkedList` constructor:

src/data-structures/doubly-linked-list/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ A JavaScript implementation of a doubly linked list. This class uses the convent
1313
1. Defining a `values()` generator method.
1414
1. Returning `undefined` from `get()` when no such index exists.
1515

16+
Read the [blog post](https://humanwhocodes.com/blog/2019/02/computer-science-in-javascript-doubly-linked-lists/) about the design of this class.
17+
1618
## Usage
1719

1820
Use CommonJS to get access to the `DoublyLinkedList` constructor:

0 commit comments

Comments
 (0)