Question: Reverse doubly linked list in c++ void DoublyLinkedList::reverse() { if(!head || !head->next) return; node* temp{nullptr}; node* p1{head}; while(p1 != nullptr){ temp = p1->previous; p1->previous =

Reverse doubly linked list in c++

void DoublyLinkedList::reverse() { if(!head || !head->next) return; node* temp{nullptr}; node* p1{head}; while(p1 != nullptr){ temp = p1->previous; p1->previous = p1->next; p1->next = temp; p1 = p1->previous; } if (temp != nullptr) { head = temp->previous; } }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!