-
Notifications
You must be signed in to change notification settings - Fork 368
/
Copy pathReverse a singly linked list.cpp
84 lines (74 loc) · 1.53 KB
/
Reverse a singly linked list.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Reversing a linked list using iterative approach
#include <iostream>
using namespace std;
// linkedlist node creation
struct Node
{
int value;
struct Node *next;
Node(int val)
{
value = val;
next = NULL;
}
};
struct linkedlist
{
Node *head;
linkedlist()
{
head = NULL;
}
// reverse function---to reverse the given linked list
void reverse_llist()
{
// initializing current, previous and next node
Node *c = head;
Node *p = NULL;
Node *next = NULL;
while (c != NULL)
{
//stroring the next address of current node
next = c->next;
//reversing the current node's pointer
c->next = p;
//moving the pointer on position ahead
p = c;
c = next;
}
head = p;
}
//Function to print the linkedlist
void print()
{
struct Node *t = head;
while (t != NULL)
{
cout << t->value << " ";
t = t->next;
}
}
//push data into the linked list
void push(int value)
{
Node *t = new Node(value);
t->next = head;
head = t;
}
};
int main(){
//empty linked list
linkedlist l;
l.push(22);
l.push(88);
l.push(45);
l.push(30);
l.push(14);
cout<<"The original list is: \n";
l.print();
l.reverse_llist();
cout<<"Linked list after reversal: \n";
l.print();
return 0;
}
Time Complexity of reversing a linked list is O(n)