-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStackQueue.h
84 lines (61 loc) · 1.92 KB
/
StackQueue.h
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
#pragma once
#include <string>
class IStack {
public:
// Returns true if empty, otherwise false
virtual bool isEmpty() const = 0;
// Adds a value to the Stack. Returns true if able to add, otherwise false
virtual bool push(const int & val) = 0;
// Removes a value from the stack. Feturns true if able to remove an element, otherwise false
virtual bool pop() = 0;
// If the ADT is empty throw an exception indicating this, otherwise returns top of stack
virtual int peek() const = 0;
// outputs contents to a string
virtual std::string toString() const = 0;
protected:
};
class ArrayBasedStack : IStack {
public:
ArrayBasedStack(void);
virtual ~ArrayBasedStack();
bool isEmpty() const override;
bool push(const int & val) override;
bool pop() override;
//If the ADT is empty throw an exception indicating this
int peek() const override;
std::string toString() const override;
private:
int stackData[10];
int currentIndex = -1;
};
class IQueue {
public:
///Returns true if empty, otherwise false
virtual bool isEmpty() const = 0;
// Adds a value to the Q. Returns true if able otherwise false
virtual bool enQueue(const std::string &val) = 0;
// remove a value to the Q. Returns true if able otherwise false
virtual bool deQueue() = 0;
//If the ADT is empty throw an exception indicating this, otherwise returns the value of the
// front of the Q
virtual std::string peek() const = 0;
// outputs contents to a string
virtual std::string toString() const = 0;
protected:
};
class ArrayBasedQueue : IQueue {
public:
ArrayBasedQueue(void);
virtual ~ArrayBasedQueue();
bool isEmpty() const override;
bool enQueue(const std::string &val) override;
bool deQueue() override;
//If the ADT is empty throw an exception indicating this
std::string peek() const override;
std::string toString() const override;
private:
std::string queueData[100];
int startIndex = 0;
int endIndex = -1;
int queueSize = 0;
};