top of page

MR. APURBA PAUL

Naturally Curious

Home: Welcome

Doubly Linked List- Part 3

//Function to delete a node at the end of the doubly linked list void delete_end() { Node *temp; temp=last; temp->lptr->rptr=NULL;...

Doubly Linked List-Part 2

//Function to Insert a node at the end of the doubly linked list void add_node(int data) { Node *newptr=NULL; newptr=(Node*)malloc(sizeof...

Home: Blog2

Subscribe Form

Stay up to date

Home: Subscribe

CONTACT

JIS College of Engineering, Block-A, Phase-III, Kalyani, Nadia, West Bengal, India, Pin-741235

9874752090

Home: Contact
bottom of page