-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stack.h
82 lines (68 loc) · 1.51 KB
/
Stack.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
75
76
77
78
79
80
81
82
// John Leeds
// 3/2/2022
// Stack.h
#ifndef STACK_H
#define STACK_H
class StackNode{
public:
/*
* constructor
* Creates a StackNode with the given coordinates
*/
StackNode(int newCoords[]);
// Getters
int* getCoords();
StackNode* getNext();
// Setters
void setCoords(int coords[]);
void setNext(StackNode* newNext);
private:
int myCoords[2];
StackNode* next;
};
class Stack{
public:
/*
* constructor
* Creates a new Stack from a pair of coordinates
*/
Stack(int coords[2]);
/*
* push
* Pushes a new value of coordinates to the stack
*/
void push(int newCoords[]);
/*
* peek
* Returns the value of the top of the stack
*/
int* peek();
/*
* pop
* Deletes the head of the stack and returns the value
*/
int* pop();
/*
* length
* Returns the length of the stack
*/
int length();
/*
* isEmpty
* Returns true of the stack is empty
*/
bool isEmpty();
/*
* show
* Prints the contents of the stack
*/
void show();
/*
* getHead
* Returns the head of the stack
*/
StackNode* getHead();
private:
StackNode* head;
};
#endif