-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab 6-Stackarray.cpp
More file actions
93 lines (79 loc) · 1.71 KB
/
lab 6-Stackarray.cpp
File metadata and controls
93 lines (79 loc) · 1.71 KB
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
#include <iostream>
#include <chrono>
using namespace std;
using namespace std::chrono;
class Stack {
private:
int arr[100];
int top;
public:
Stack() {
top = -1;
}
bool is_empty() {
return top == -1;
}
bool is_full() {
return top == 100 - 1;
}
void push(int data) {
if (is_full()) {
cout << "Error: Stack is full" << endl;
return;
}
arr[++top] = data;
}
int pop() {
if (is_empty()) {
cout << "Error: Stack is empty" << endl;
return -1;
}
return arr[top--];
}
int StackTop() {
if (is_empty()) {
cout << "Error: Stack is empty" << endl;
return -1;
}
return arr[top];
}
void display() {
if (is_empty()) {
cout << "Stack is empty" << endl;
return;
}
cout << "Stack elements are: ";
for (int i = 0; i <= top; i++) {
cout << arr[i] << " ";
}
cout << endl;
}
};
int main() {
Stack s;auto start = high_resolution_clock::now();
s.push(8);
s.push(10);
s.push(5);
s.push(11);
s.push(15);
s.push(23);
s.push(6);
s.push(18);
s.push(20);
s.push(17);
s.display();
cout << "Popping 5 elements from the stack: ";
for (int i = 0; i < 5; i++) {
cout << s.pop() << " ";
}
cout << endl;
s.display();
s.push(4);
s.push(30);
s.push(3);
s.push(1);
s.display();
auto stop = high_resolution_clock::now();
auto duration = duration_cast<microseconds>(stop - start);
cout << "Time taken by function: "<< duration.count() << " microseconds" << endl;
}