An open API service indexing awesome lists of open source software.

https://github.com/jdegand/odin-project-linked-lists

Odin Project Javascript - Computer Science - Linked Lists
https://github.com/jdegand/odin-project-linked-lists

computer-science odin-project

Last synced: over 1 year ago
JSON representation

Odin Project Javascript - Computer Science - Linked Lists

Awesome Lists containing this project

README

          

# Odin Project Linked Lists

[Odin Project Directions](https://www.theodinproject.com/lessons/javascript-linked-lists)

## Thoughts

- Don't really use classes that much anymore
- Not much practical reason to focus my energy on algorithms and data structures

## Useful Resources

- [MDN Docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes) - Javascript Classes
- [Medium](https://medium.com/swlh/javascript-inserting-a-node-at-the-tail-of-a-linked-list-4eb742fb1a23) - node at the tail
- [AlgoList](https://www.algolist.net/Data_structures/Singly-linked_list/Removal) - Removing tail
- [Geeks for Geeks](https://www.geeksforgeeks.org/remove-last-node-of-the-linked-list/) - remove last node of the linked list
- [YouTube](https://www.youtube.com/playlist?list=PLC3y8-rFHvwjPxNAKvZpdnsr41E0fCMMP) - Codevolution Algnorithm and Data Structure playlist
- [YouTube](https://www.youtube.com/watch?v=gJjPWA8wpQg) - Linked List with Test Driven Development