-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinklist.cpp
71 lines (71 loc) · 1.21 KB
/
Linklist.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
#include<bits/stdc++.h>
#include <iostream>
using namespace std;
struct node
{
int data;
node *next;
};
class linked_list
{
private:
node *head,*tail;
public:
linked_list()
{
head = NULL;
tail = NULL;
}
void add_node(int n)
{
node *temp = new node;
temp->data = n;
temp->next = NULL;
if(head == NULL)
{
head = temp;
tail = temp;
}
else
{
tail->next = temp;
tail = tail->next;
}
}
void display()
{
node *temp = new node;
temp=head;
cout<<"List : ";
while(temp!=NULL)
{
cout<<temp->data<<" ";
temp=temp->next;
}
cout<<endl;
}
};
int main()
{
int n,ch;
linked_list a;
cout<<"Enter the 1 to enter data and 2 to display and 0 to exit :-"<<endl;
do
{
cout<<"Enter your choice : ";
cin>>ch;
if(ch==1)
{
cout<<"Enter data : ";
cin>>n;
a.add_node(n);
}
else if(ch==2)
{
a.display();
}
}
while(ch);
cout<<"Exit :)";
return 0;
}