-
Notifications
You must be signed in to change notification settings - Fork 1
/
circularqueue.cpp
83 lines (80 loc) · 1.03 KB
/
circularqueue.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
using namespace std;
#include<iostream>
struct node
{
int data;
struct node* next=NULL;
};
struct node *front=NULL;
struct node *rear=NULL;
struct node *createnode()
{
struct node *p;
p=new(struct node);
cin>>p->data;
p->next=NULL;
}
struct node *insertnode()
{
struct node *p;
p=createnode();
if(front==NULL&&rear==NULL)
{
front=p;
rear=p;
p->next=NULL;
}
else
{
struct node *t;
t=front;
while(t->next!=NULL)
{
t=t->next;
}
t->next=p;
p->next=NULL;
rear=p;
}
}
/*struct node *deletion()
{
if(rear->next==NULL&&front->next==NULL)
{
cout<<"nothing to be deleted"<<endl;
}
else if(rear->next==front->next)
{
rear=NULL;
front=NULL;
}
else if(front->next==NULL&&front!=rear)
{
front=NULL;
}
else
{
front = front->next;
}
return front;
}*/
int main()
{
insertnode();
insertnode();
insertnode();
insertnode();
//deletion();
//deletion();
//deletion();
// deletion();
// deletion();
while(front->next!=NULL)
{
cout<<front->data;
front=front->next;
}
cout<<front->data;
{
}
}