You’re given the pointer to the head node of a doubly linked list. Reverse the order of the nodes in the list. The head node might be NULL to indicate that the list is empty.
Input Format
You have to complete the
Output Format
Change the
Sample Input
NULL
NULL <– 2 <–> 4 <–> 6 –> NULL
Sample Output
Input Format
You have to complete the
Node* Reverse(Node* head)
method which takes one argument – the head of the doubly linked list. You should NOT read any input from stdin/console.Output Format
Change the
next
and prev
pointers of all the nodes so that the direction of the list is reversed. Then return
the head node of the reversed list. Do NOT print anything to stdout/console.Sample Input
NULL
NULL <– 2 <–> 4 <–> 6 –> NULL
Sample Output
NULL
NULL <-- 6 <--> 4 <--> 2 --> NULL
Explanation
1. Empty list, so nothing to do.
2. 2,4,6 become 6,4,2 o reversing in the given doubly linked list.
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cmath>
using namespace std;
struct Node
{
int data;
Node* next;
Node* prev;
};/*
Reverse a doubly linked list, input list may also be empty
Node is defined as
struct Node
{
int data;
Node *next;
Node *prev
}
*/
Node* Reverse(Node* head)
{
// Complete this function
// Do not write the main method.
if(head == NULL || head->next == NULL)
return head;
Node *p = head;
Node *q = head->next;
if(q->next == NULL)
{
q->next = p;
q->prev = NULL;
p->next = NULL;
p->prev = q;
return q;
}
while(q->next != NULL)
{
if(p == head)
p->next = NULL;
Node *_next = q->next;
q->next = p;
p->prev = q;
p = q;
q = _next;
}
q->next = p;
p->prev = q;
q->prev = NULL;
return q;
}Node* Insert(Node *head, int data)
{
Node *temp = new Node();
temp->data = data; temp->prev = NULL; temp->next = NULL;
if(head == NULL) return temp;
head->prev = temp;
temp->next = head;
return temp;
}
void Print(Node *head) {
if(head == NULL) return;
while(head->next != NULL){ cout<<head->data<<" "; head = head->next;}
cout<<head->data<<" ";
while(head->prev != NULL) { cout<<head->data<<" "; head = head->prev; }
cout<<head->data<<"\n";
}
int main()
{
int t; cin>>t;
Node *head = NULL;
while(t--) {
int n; cin>>n;
head = NULL;
for(int i = 0;i<n;i++) {
int x; cin>>x;
head = Insert(head,x);
}
head = Reverse(head);
Print(head);
}
}
Read More:
- 206. Reverse Linked List [easy] (Python)
- Assign the intersection combination of two linked lists to linked list a
- Leetcode-234: palindrome linked list
- Reverse function: reverses container contents
- JMeter linked database
- Codeworks educational round 96 [reverse pair] E. string reverse
- 7. Reverse Integer [easy] (Python)
- How to Use the Reverse() Function
- Leetcode: 7. Reverse Integer(JAVA)
- IOS reverse error: use of undeclared identifier ‘mshookivar’
- Nginx reverse proxy MySQL
- Mybatis reverse problem failed to load ApplicationContext
- Nginx reverse proxy report 400 error solution!
- NxL job cluster nginx routing forwarding and reverse proxy
- Common attributes and methods of list and map in Dar
- Nginx front end and back end separation + service cluster reverse proxy
- Struts 2 encapsulates form data into list and map sets
- Determine whether the list is empty isempty
- Pre initialization of list content and length in Python
- PCIe Lane flip and PN flip (Lane reverse and polarity)