Faculty of Engineering Sciences and Technology
Faculty of Engineering Sciences and Technology
1.0
FACULTY OF ENGINEERING SCIENCES AND TECHNOLOGY
class Node {
int data;
Node prev;
Node next;
Node(int data) {
this.data = data;
this.prev = null;
this.next = null;
}
}
class DoublyLinkedList {
private Node head;
public DoublyLinkedList() {
this.head = null;
}