struct Node {
 
    int data;
    struct DLLNode* next;
    struct DLLNode* prev;
};