65 lines
1.5 KiB
Java
65 lines
1.5 KiB
Java
class Node<T> {
|
|
T data;
|
|
Node<T> next;
|
|
|
|
Node(T data) {
|
|
this.data = data;
|
|
this.next = null;
|
|
}
|
|
}
|
|
|
|
public class SinglyLinkedList<T> {
|
|
Node<T> head;
|
|
|
|
SinglyLinkedList() {
|
|
this.head = null;
|
|
}
|
|
|
|
void insertAtHead(T data) {
|
|
Node<T> newNode = new Node<T>(data);
|
|
if(this.head == null) {
|
|
this.head = newNode;
|
|
} else {
|
|
newNode.next = this.head;
|
|
this.head = newNode;
|
|
}
|
|
}
|
|
|
|
T removeAtHead() {
|
|
// check for underflow
|
|
if(this.head == null) {
|
|
System.out.println("Underflow");
|
|
System.exit(1);
|
|
}
|
|
// store data for return
|
|
T data = this.head.data;
|
|
this.head = this.head.next;
|
|
return data;
|
|
}
|
|
|
|
void printList() {
|
|
// if head is null then list is empty
|
|
if(this.head == null) {
|
|
System.out.println("List is Empty");
|
|
} else {
|
|
// take itr same as head reference and loop through it until it became null
|
|
Node<T> itr = this.head;
|
|
while(itr != null) {
|
|
System.out.print(itr.data + " ");
|
|
itr = itr.next;
|
|
}
|
|
System.out.println("");
|
|
}
|
|
}
|
|
|
|
// Test Code
|
|
public static void main(String... args) {
|
|
SinglyLinkedList<String> l = new SinglyLinkedList<String>();
|
|
l.insertAtHead("abc");
|
|
l.insertAtHead("pqr");
|
|
l.insertAtHead("xyz");
|
|
l.removeAtHead();
|
|
l.printList();
|
|
}
|
|
}
|