-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack_using_LinkedList.cpp
86 lines (76 loc) · 1.43 KB
/
stack_using_LinkedList.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
#include <iostream>
using namespace std;
class Node
{
public:
int data;
Node *next;
};
int isEmpty(Node *ptr)
{
if (ptr == NULL)
return 1;
else
return 0;
}
int isFull()
{
Node *newNode = (class Node *)malloc(sizeof(class Node));
if (newNode == NULL)
return 1;
else
return 0;
}
Node *push(Node *top, int value)
{
if (isFull())
cout << "Stack Overflow" << endl;
else
{
//class Node *newNode = (class Node *)malloc(sizeof(class Node));
Node *newNode = new Node;
newNode->data = value;
newNode->next = top;
top = newNode;
return top;
}
}
void linkedListTraversal(Node *ptr)
{
while (ptr)
{
cout << ptr->data << " ";
ptr = ptr->next;
}
}
int pop(Node **top)
{
if (isEmpty(*top))
{
cout << "Stack Underflow";
return -1;
}
else
{
Node *temp = *top;
*top = (*top)->next;
int data = temp->data;
delete temp;
return data;
}
}
int main()
{
Node *top = NULL;
//taking an input array for push operation
int arr[] = {1, 3, 4, 5, 6, 6, 7, 8};
int n = sizeof(arr) / sizeof(arr[0]);
for (int i = 0; i < n; i++)
top = push(top, arr[i]);
linkedListTraversal(top);
cout << endl;
int element = pop(&top);
printf("Popped element is %d\n", element);
linkedListTraversal(top);
return 0;
}