Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Stack Operations based on Arrays using the programming language C++ #256

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Competitive Coding/Data Structures/Stack/Stack_C++/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# C++

## Stack Operations

### This Folder contains the following files:

1. All Basic Stack Operations based on **Arrays** [File Link](https://github.com/Zanark/Algorithms/blob/78ac861cc519e8e2b400094bddac6fa3e59b859e/Competitive%20Coding/Data%20Structures/Stack/Stack_C%2B%2B/Stack_operations_using_Arrays.cpp#L2)

* *Inserting* an element onto the stack { **PUSH** } [Code](https://github.com/Zanark/Algorithms/blob/78ac861cc519e8e2b400094bddac6fa3e59b859e/Competitive%20Coding/Data%20Structures/Stack/Stack_C%2B%2B/Stack_operations_using_Arrays.cpp#L24-L33)
* *Deleting* an element from the stack  { **POP**   } [Code](https://github.com/Zanark/Algorithms/blob/78ac861cc519e8e2b400094bddac6fa3e59b859e/Competitive%20Coding/Data%20Structures/Stack/Stack_C%2B%2B/Stack_operations_using_Arrays.cpp#L36-L44)
* *Displaying* the Stack [Code](https://github.com/Zanark/Algorithms/blob/78ac861cc519e8e2b400094bddac6fa3e59b859e/Competitive%20Coding/Data%20Structures/Stack/Stack_C%2B%2B/Stack_operations_using_Arrays.cpp#L47-L60)

Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@

// All Operations on Stacks based on ARRAYS
//--------------------------------------------------------------------------------------

#include<iostream>
#include<conio.h>
#include<stdlib.h>

using namespace std;

class stack
{
int stk[101];
int top;

public:

stack() // Initialising an Empty Stack
{
top=-1;
}


void push(int x) // To Insert Elements onto the Stack
{
if(top > 100) // To Check if the Stack is already FULL
{
cout <<"\n\n !!!! Stack over flow !!!!";
return;
}
stk[++top]=x;
cout <<"\n The inserted element is : \t" <<x; // Inserting a NEW element and making it the NEW Top
}


void pop() // To Delete an element from the Stack
{
if(top <0) // To check if the Stack is already EMPTY
{
cout <<"\n\n !!!! Stack under flow !!!!";
return;
}
cout <<"deleted" <<stk[top--]; // Deleting an element and making the PREVIOUS element the NEW TOP
}


void display() // To Display the Stack
{
if(top<0)
{
cout <<"\n\n Stack is empty :(";
return;
}
for(int i=top;i>=0;i--)
{
if (i == top)
cout<<"\n Top --> ";
cout <<stk[i] <<" ";
}
}
};

main()
{
int ch;
int ele;
stack st;
while(1)
{
cout << "\n What do you want to do?"
<< "\n\n 1. Push an element onto the Stack"
<< "\n\n 2. Pop an element from the Stack"
<< "\n\n 3. Display the Stack"
<< "\n\n 4. EXIT the program"
<< "\n\n\n\n Please Enter your choice\n";
cin >> ch;
switch (ch)
{
case 1:
cout << "\n Enter the element \t:\t";
cin >> ele;
st.push(ele);
break;
case 2:
st.pop();
break;
case 3:
st.display();
break;
case 4:
exit(0);
}
}
return (0);
}