add element at the beginning of linkedList

PHOTO EMBED

Wed Sep 08 2021 01:29:44 GMT+0000 (Coordinated Universal Time)

Saved by @prashantkr006 #java

public void addAtBegin(int item){
  Node nn = new Node();
  nn.data = item;
  
  //attach new node to the previous node 
  if(this.size >= 1)
    nn.next = head;
  else
    this.tail = nn;
  
  //shift head of previous node to the ned node
  this.head = nn;
  this.size++;
}
content_copyCOPY