/**
*
* Ashish Patel
* e: ashishsushilPatel@gmail.com
* w: https://ashish.me
*
*/
class DeleteFirstNode {
static Node delHead(Node head) {
if(head == null){
return null;
} else {
return head.next;
}
}
public static void main(String[] args) {
Node head = new Node(10);
head.next = new Node(20);
head.next.next = new Node(30);
printlist(head);
head = delHead(head);
printlist(head);
}
public static void printlist(Node head) {
Node curr = head;
while (curr != null) {
System.out.print(curr.data + " ");
curr = curr.next;
}
System.out.println();
}
}
Created 2021-12-29T07:05:43+00:00 · Edit