Concept Flow - Create and Initialize Doubly Linked List
Define Node Structure
Create Head Node with data
Set head.prev = NULL
Set head.next = NULL
Initialize list with single node
Done: List ready with one node
Start by defining the node structure, then create the first node (head) with data, set its previous and next pointers to NULL, and finish with a list containing one node.
