1- Linked List Using Javascript

Abdalla Nayer
1 min readJun 6, 2017

--

Linked list is a simple data structure that links different types of data (Number, String, Characters), data can be either sorted or unsorted.

Linked Lists elements are not indexed as an array, elements are linked together using pointers, each element has reference to the next element (and to the previous element in case of doubly linked list)

Below the code for the creation of the Linked List and different operations that can be done to it

Below are some problems on Linked List in https://leetcode.com/tag/linked-list/ and their answers

1- 237. Delete Node in a Linked List

2- 203. Remove Linked List Elements

--

--