-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStack_using_LL.cpp
More file actions
85 lines (72 loc) · 1.68 KB
/
Stack_using_LL.cpp
File metadata and controls
85 lines (72 loc) · 1.68 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
#include <iostream>
#include <climits>
using namespace std;
class Node {
public:
int value;
Node* next;
Node(int value) {
this->value = value;
next = nullptr;
}
};
class Stack {
private:
Node* top;
int height;
public:
Stack(int value) {
Node* newNode = new Node(value);
top = newNode;
height = 1;
}
~Stack() {
Node* temp = top;
while (top) {
top = top->next;
delete temp;
temp = top;
}
}
void printStack() {
Node* temp = top;
while (temp) {
cout << temp->value << endl;
temp = temp->next;
}
}
Node* getTop() {
return top;
}
int topValue() {
if (top) return top->value;
return INT_MIN;
}
int getHeight() {
return height;
}
void makeEmpty() {
Node* temp;
while (top) {
temp = top;
top = top->next;
delete temp;
}
height = 0;
}
void push(int value) {
Node* newNode = new Node(value);
newNode->next = top;
top = newNode;
height++;
}
int pop(){
if(height == 0) return INT_MIN;
Node* temp = top;
int poppedval= top->value;
top = top->next;
height--;
delete temp;
return poppedval;
}
};