-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueue.cpp
105 lines (98 loc) · 1.7 KB
/
Queue.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
/*
* Queue.cpp
*
* Created on: Oct 25, 2013
* Author: subhranil
*/
#include "Queue.h"
//Queue::Queue() {
// // TODO Auto-generated constructor stub
// mHead=NULL;
// mTail=NULL;
// mNumberOfElements=0;
//
//}
//Queue::~Queue() {
// // TODO Auto-generated destructor stub
//}
//
//bool Queue::isEmpty()
//{
// return (mHead!=NULL);
//}
//void Queue::enQueue(void* data)
//{
//
// Node *newNode=(Node*)malloc(sizeof(Node));
// newNode->data=data;
// newNode->next=NULL;
// if(mTail) //starting condition
// mTail->next=newNode;
// mTail=newNode;
// mNumberOfElements++;
// if(!mHead) //starting condition
// mHead=mTail;
//
//}
//Node* Queue::start()
//{
// return mHead;
//}
//Node* Queue::iterate(Node* it)
//{
// static Node* head=NULL;
// head=(it!=NULL)?it:head;
// if(head==NULL)
// return NULL;
// Node* temp=head;
// head=head->next;
// return temp;
//
//
//}
//Node* Queue::deQueue()
//{
// if(!mHead) //empty check
// return NULL;
//
// Node* temp=mHead;
// mHead=mHead->next;
// mNumberOfElements--;
// return mHead;
//
//}
Queue* initialiseQueue()
{
Queue* newQ=(Queue*)malloc(sizeof(Queue));
newQ->mHead=NULL;
newQ->mTail=NULL;
newQ->mNumberOfElements=0;
return newQ;
}
void enQueue(Queue* q,void* data)
{
Node *newNode=(Node*)malloc(sizeof(Node));
newNode->data=data;
newNode->next=NULL;
if(q->mTail) //starting condition
q->mTail->next=newNode;
q->mTail=newNode;
q->mNumberOfElements++;
if(!q->mHead) //starting condition
q->mHead=q->mTail;
}
Node* deQueue(Queue* q)
{
if(!q->mHead) //empty check
return NULL;
Node* temp=q->mHead;
q->mHead=q->mHead->next;
q->mNumberOfElements--;
if(!q->mHead)
q->mTail=NULL;
return temp;
}
bool isEmpty(Queue*q)
{
return (q->mHead!=NULL);
}