-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
SinglyLinkedLIst2.cpp
executable file
·122 lines (120 loc) · 1.65 KB
/
SinglyLinkedLIst2.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
122
#include "iostream"
#include "cstdlib"
using namespace std;
struct Node
{
int data;
Node* link;
};
Node* A;
void insert()
{
int n,p;
cout<<"Enter the no to be Inserted:";
cin>>n;
cout<<"Enter the position:";
cin>>p;
Node* temp=new Node;
if (p==1)
{
temp->link=A;
temp->data=n;
A=temp;
return;
}
Node* temp2=A;
for(int i=1;i<p-1;i++)
{
temp2=temp2->link;
}
temp->link=temp2->link;
temp2->link=temp;
temp->data=n;
}
void delet()
{
int p;
cout<<"Enter the position of the element to be deleted:";
cin>>p;
Node* temp=A;
if (p==1)
{
A=temp->link;
temp=NULL;
return;
}
Node* temp2=new Node;
for(int i=1;i<p-1;i++)
{
temp=temp->link;
}
temp2=temp->link;
temp->link=temp2->link;
temp2=NULL;
}
void display()
{
Node* temp=A;
while(temp!=NULL)
{
cout<<"->"<<temp->data;
temp=temp->link;
}
cout<<"\n"<<"---------------------------"<<"\n";
}
void count()
{
int c=0;
Node* temp=A;
while(temp!=NULL)
{
c++;
temp=temp->link;
}
cout<<c<<endl;
}
void rev()
{
Node* temp=A;
Node* temp2=new Node;
Node* prev=temp->link;
while(prev!=NULL)
{
temp2=prev->link;
prev->link=temp;
temp=prev;
prev=temp2;
}
A->link=NULL;
A=temp;
}
int main()
{
A=NULL;
while(1)
{
int ch;
cout<<"Enter your choice:\n1-Insert\n2-Delete\n3-Display\n4-Reverse\n5-Count\n6-Exit\n->";
cin>>ch;
switch(ch)
{
case 1:
insert();
break;
case 2:
delet();
break;
case 3:
display();
break;
case 4:
rev();
break;
case 5:
count();
break;
case 6:
exit(0);
}
}
}