Data Structures & Algorithms in JavaScript(Single Linked List) Part 1

swarup260

Swarup Das

Posted on December 23, 2019

Data Structures & Algorithms in JavaScript(Single Linked List) Part 1

Hello Everyone, this is part 5.1 in the series of blogs about data structures and algorithms in JavaScript, In this blog, I will cover linked list.

What is Linked List?

A linked list consists of nodes where each node contains a data field and a reference(link) to the next node in the list. - geeksforgeeks.org

Linked List

List Of Operations Available

  • Push: Insert an element at the end of the linked list.
  • Insert: Insert an element at the given index of the linked list.
  • Remove: Remove the end element of the linked list.
  • RemoveAt: Remove the element at the given index of the linked list.
  • GetElementAt: Get the element at the given index of the linked list.
  • IndexOf: Return the index of the element in the linked list.

Implementation of linked list in Javascript

Let us define the ES6 class Node, with two properties data and next,
data property will hold, the data which we will insert in the linked list and next property will hold, the pointer to the next Node. A Linked List is just a chain of Node linked to each other by next pointer. What's a pointer? A pointer points to the next member of the list, as you see in the above image.

 class Node {
     constructor(element){
         this.element = element;
         this.next = null;
     }
 }

Enter fullscreen mode Exit fullscreen mode

Now, Let's define the ES6 class linked list with three properties,
count to track the number elements in the linked list. the head which will always point to the starting node of the linked list but initially it will be undefined and equalFun to compare two nodes in the linked list . In a single Linked list, we only have a reference to the head node. So to traverse the linked list we always start with the head and walk through it. So, subsequent method we will always start with head.

class LinkedList {
    constructor(func) {
        this.count = 0;
        this.head = undefined;
        this.equalFunc = func || defaultEq;
    }
}

Enter fullscreen mode Exit fullscreen mode

Push

When adding an element at the end of the linked list, there can be two scenarios:

  • When the head is undefined i.e linked list is empty.
  • When the linked list is not empty we need to append at the end.

First, we create a Node passing element as its value if the head is undefined then assign head to the node ({1}) else ,we will define a current variable equal to head and loop until we reach the end of the linked list i.e when node's next is null ({2}) and assign the end Node's next to the node ({3}), after adding an element will always increment the count variable ({4}).


push(element) {
        const node = new Node(element);
        let current = this.head;
        if (this.head == undefined) {
            this.head = node;  //1
        }else{
            while (current.next != null) { //2
                current = current.next
            }
            current.next = node; //3
        }
        this.count++ //4;
        return;
    }

Enter fullscreen mode Exit fullscreen mode

GetElementAt

To get an element by its index we will first define a variable node, referring to head ({1}), we valid the index's out of bound error, by check is the index, greater than zero and less than count. ({2}); if not then return undefined ({5}), Now, iterate over the linked list starting from 0 to the index and ({3}), return the node ({4}). This method will be very useful in insert and remove an element from any position in the linked list.


  getElementAt(index) {
        let node = this.head; // 1
        if (index >= 0 && index < this.count) { //2
            for (let i = 0; i < index; i++) { //3
                node = node.next;
            }
            return node; //4
        }
        return undefined; //5
    }

Enter fullscreen mode Exit fullscreen mode

Insert

Insert an element at a given the position; the index must be greater than zero and less than and equal to count, there are two scenarios,
we will first define a variable node which refers to the head.

  • index is equal to zero ({1})
    • check if the head is undefined or not
      • if undefined than head equal to the node
      • else change the head node to the new node and node's next to the previous head.

Insert element at zero index

  • index is greater than zero ({2})
    • adding an element in the middle or at the end of the list. First, need to loop through the list until we reach the desired position. In this case, we will loop to index -1, meaning one position before where we desire to insert a new node
    • When we get out of the loop, the previous variable will be reference to an element before the index where we would like to insert to new element, and the current variable .
    • So , first we link the node's next to current and then change the link between previous and current. we need previous.next to the node.

Insert element at any index

insert(element, postion) {
        if (postion >= 0 && postion <= this.count) {
            const node = new Node(element);
            let current = this.head;
            if (postion == 0) { //1
                if (this.head == undefined) {
                    this.head = node;
                }
                this.head = node;
                node.next = current;
            } else {  
                let previous = this.getElementAt(postion - 1);
                current = previous.next;
                node.next = current;
                previous.next = node;
            }
         this.count++;
        }
    }

Enter fullscreen mode Exit fullscreen mode

you get the full source here

Conclusion :

Methods Complexity
insert at any position O(n)
insert at head O(1)
GetElementAt O(n)

So, stay tuned for the next blog, in which I will cover remaining methods of Linked List.

💖 💪 🙅 🚩
swarup260
Swarup Das

Posted on December 23, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related