-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathLinkedList.cpp
121 lines (121 loc) · 2.61 KB
/
LinkedList.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <bits/stdc++.h>
#define for(i,n) for(int i=0;i<n;i++)
using namespace std;
struct node
{
int data;
node* next;
};
struct node* head;
// insert a node at nth position
void insertAtN(int x,int n){
node* temp1 = new node();
temp1->data=x;
temp1->next=NULL;
node* temp2=head;
if(n==1){
head=temp1;
temp1->next=NULL;
return;
}
for(i,n-2) temp2=temp2->next;
temp1->next=temp2->next;
temp2->next=temp1;
}
// Reversal of a linked list using iterative method
void reverse(){
node *prev,*current,*next;
prev=NULL;
current=head;
while(current!=NULL){
next=current->next;
current->next=prev;
prev=current;
current=next;
}
head=prev;
}
// Reversal of a linked list using recursive method
void reverseRecursive(node *p){
node* temp=p;
if(temp->next == NULL){
head=temp;
return;
}
reverseRecursive(temp->next);
node* temp1 = temp->next;
temp1->next = temp;
temp->next = NULL;
}
//print linked list using iterative method
void print(){
node* temp=head;
while(temp!=NULL){
cout<<temp->data<<" ";
temp=temp->next;
}
cout<<"\n";
}
//print linked list using recursive approach
void printRecursive(node* p){
node* temp=p;
if(temp == NULL) {
cout<<"\n";
return;
}
cout<<temp->data<<" ";
printRecursive(temp->next);
}
//print linked list in reverse order using recursive approach
void reversePrintRecursive(node *p){
node* temp=p;
if(temp == NULL) return ;
reversePrintRecursive(temp->next);
cout<<temp->data<<" ";
}
//Delete a node at nth position
void deleteAtN(int n){
node* temp1=head;
if(n==1){
head=temp1->next;
delete temp1;
return ;
}
for(i,n-2) temp1=temp1->next;
node* temp2 = temp1->next;
temp1->next = temp2->next;
delete temp2;
}
int main(int argc, char const *argv[])
{
ios_base::sync_with_stdio(false);
head = NULL;
int n,x;
cout<<"How many numbers you want to insert";
cin>>n;
for(i,n){
cout<<"Insert the number";
cin>>x;
insertAtN(x,i+1);
}
cout<<"List is ";
print();
cout<<"Reverse of linked list is ";
reverse();
print();
reverse();
cout<<"List is ";
printRecursive(head);
cout<<"Reversal print of linked list is ";
reversePrintRecursive(head);
cout<<"\n";
cout<<"Reverse of linked list is ";
reverseRecursive(head);
print();
reverse();
deleteAtN(2);
cout<<"List after deleting element at position 2 is ";
print();
cout<<"\n";
return 0;
}