DEV Community

Ericawanja
Ericawanja

Posted on

Linked List Data structure

Linked list is a linear data structure with items(nodes) with links pointing to other items in the list.
The are three types of linked lists:

  • Singly linked list - the nodes have one pointer to the next item in the list. The last node points to null.
  • Doubly linked lists - every node has two pointers, one pointing to the previous element in the list and the other pointer pointing to the next element.
  • Circular linked list - The last node points to the first element in the list.

In this article we will be looking at singly linked list.

An item in singly linked list has two main parts. The first part
holds the data value while the other parts contains a link to the next item. However, the last item has nothing to point to thus its next value is null.

Linked lists

Why and when to use the Linked lists

Linked lists are recommended if you have a list of objects with links to the next item in the list. Its main advantage is;

  • Easy insertion

Inserting an element in array is quite expensive because you will have to shift all other items. Similarly, deleting an element in array, will leave holes or else you will have to shift the positions of the elements after the removed element.

However when using the Linked List you can easily transverse a list and insert or remove a node at the required position.

Drawbacks of linked lists

  1. Does not support random access of elements. Thus, you will have to transverse through the list sequentially from the first element. This can be quite time consuming especially on the worst case. ## How to create a linked list

As you might have noted from the above diagram, every item in the linked list has the data part and link to the next value.
Below is a code template for a node (data item) in linked list. You can check the complete code snippets used here

 class Node {
  constructor(val, next = null) {
    this.data = val;
    this.next = next;
  }
}
Enter fullscreen mode Exit fullscreen mode

Next, let us initialize a linked list.
Note, that the head will have a null value and a size of zero because we have not added any items yet.

 class Node {
  constructor(val, next = null) {
    this.data = val;
    this.next = next;
  }
}

class LinkedList {
  constructor() {
    this.head = null;
    this.size = 0;
  }
  //methods
}
Enter fullscreen mode Exit fullscreen mode

1. Insert Node at the first position (head)

To insert a node at the first position we will use the Node constructor.

We will create a new node with a data property of the value to be inserted and next property of the previous head.

  insertFirst(data) {
    this.head = new Node(data, this.head);
    this.size++
  }
Enter fullscreen mode Exit fullscreen mode

2. Insert Node at the Last position (Tail)

To insert an element at the tail, we will have to transverse through the list untill we get to the last value which points to null.

We will assign the new node to the next value of the last node.

Don't forget to check if the head is empty. If so, the new node will be the head.

  insertLast(data) {
    let node = new Node(data);
    let current;

    //if empty make the node the head
    if (!this.head) {
      this.head = node;
    } else {
      current = this.head;
      while (current.next) { // the loop terminates when  the pointer gets to a node whose next property is null
        current = current.next;
      }
      current.next = node;
    }
    this.size++
  }
Enter fullscreen mode Exit fullscreen mode

3. Insert Node at index

The first thing to do when working with an index, is to check if the index is valid. That is, not less than zero or greater than the size of the list.

If the index is equal to zero, the node is to be made the head.

Else, we will transverse the list checking if the position is less than the index using two pointers.
The previous pointer points to the element just before the position to insert the node while the current points to the node on the position we want to add the node.

When the loop terminates, the next property of the previous item will point to the node to be added previous.next = node and the next item of the new node will point to the current item, node.next = current

   insertatIndex(data, index) {
    if (index < 0 || index > this.size) { // Checking if the index is valid. That is, less than zero or greater than the size 

      return;
    }
    //inserting at the first position. You can reuse the insertFirst()
    if(index == 0){
      this.head = new Node(data, this.head) //making the new node the head and the next value, the previous head
        console.log( this.head)
        return;
    }
    const node = new Node(data); // creating the node using the Node class
    let current, previous; // 

    //set current to first
    current= this.head;
    let pos = 0;
    //looping through untill you get to the index 
    while(pos < index){
        previous = current;
        pos++;
        current = current.next;

    }
    node.next = current;
    previous.next = node;
    this.size++
  }
Enter fullscreen mode Exit fullscreen mode

4. Get Node at index

To get an element at a particular index in linked list, loop through the list checking if the current position is equal to the index.

If the position value is equal to the index, output its data value.

Else, increment the position and move the pointer to the next item.

 getAt(index){
    let current = this.head;
    let pos=0;
    while(current){ // the loop terminates if the currenmt value (this.head) is null
        if(pos == index){
            console.log(current.data)
        }
        pos++;
        current= current.next; // moving the pointer to the next value

    }
    return null;
  }
Enter fullscreen mode Exit fullscreen mode

5. Remove node at index

First, check if the index is valid. That is, it is not less than zero or greater than the size if you know the size.

If the head is eqaul to zero, then you should remove the first value by moving the head pointer to the head.next

Next, transverse through the list to find the node with the link to the node to be deleted (previous) and the element after the node to be deleted (current next).
Note: the node to be removed is at the position equal to the index.

To remove the node, the next property of the previous should point to the next element after the item to be deleted. That is previous.next = current.next

Linked lists

 removeAtIndex(index){
    if (index < 0 || index > this.size){ //checking if the index is valid
      return
    }
    let count=0;
    let previous, current;
    current = this.head;
    if (index === 0) { // Deleting from beginning 
      this.head = current.next;
    }else{
    while(count < index){
      previous = current;
      current = current.next; 
      count++     
    }
    previous.next = current.next;
    this.size--;
    return;
  }
}
Enter fullscreen mode Exit fullscreen mode

6. Clear List

An empty linked list has the head value as null. Hence to clear the list you need to point the head value to null.

 clearList(){
    this.head = null;
    this.size = 0;
  }
Enter fullscreen mode Exit fullscreen mode

7. Transverse a linked list

We transverse through a linked list using the head pointer. Remember that the head pointer refers to the first node.

On the while loop, we will check that head is not equal to null. That is, the list is not empty or we have not exhausted looping through the list and print head.data ( remember that a node is an object) and then move the pointer to the next value.

printList() {
    while (this.head) {
      console.log(this.head.data);
      this.head = this.head.next;
    }
  }
Enter fullscreen mode Exit fullscreen mode

Big O Analysis

Operation O Explanation
Insertion O(1) You just need to change the pointers of the previous node and the next node
Deletion O(1) You need to change the pointer of the previous node only
Search O(n) We have iterate sequentially over every element until we get to the target
Traversing O(n) We have to sequentially iterate over ever element

Conclusion

The best way to understand data structures is through practice. After understanding the basics, try writing the code snippets or look for leetcode problems and solve.

Top comments (2)

Collapse
 
kamauwaweru profile image
kamau waweru

i really like it

Collapse
 
ericawanja profile image
Ericawanja

Thank @kamauwaweru