add element at the end of LinkedList

PHOTO EMBED

Fri Sep 10 2021 17:53:44 GMT+0000 (Coordinated Universal Time)

Saved by @prashantkr006 #java

public void addAtEnd(int item) {
		Node nn = new Node(item);
		
		  //Attach new node to the previous node
		if(this.size >= 1)
			  this.tail.next = nn;
		  
		  //Shift tail at the end node
		  else head = nn;
		  
		  tail = nn;
		  size++;
		}
content_copyCOPY