Given a doubly linked list, implement a method to insert a node at its head. Return the head of the list.
Insert 1 ==> 1
Insert 2 ==> 2<=>1
Insert 3 ==> 3<=>2<=>1
previous
null
next
public DoublyLinkedNode insertAtHead(DoublyLinkedNode head, int data) { }