Adding Node at the End of Linked List:-
The method takes two parameter one a head node of a linked list and other data too insert.
To Know the basic structure of the linked list click herepublic void addNodeEnd(Node head,int data) { if(head==null) { System.out.println("list is empty"); return; } Node node=new Node(data); Node temp=head; while(temp.next!=null) { temp=temp.next; } temp.next=node; }
Comments
Post a Comment