From 87d741293b0970e615cb66162c7a39aba63c9599 Mon Sep 17 00:00:00 2001 From: Zanark Date: Mon, 25 Dec 2017 13:21:56 +0530 Subject: [PATCH 1/3] Added Stack operations Based on arrays.cpp --- .../Stack_operations_using_Arrays.cpp | 95 +++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 Competitive Coding/Data Structures/Stack/Stack_C++/Stack_operations_using_Arrays.cpp diff --git a/Competitive Coding/Data Structures/Stack/Stack_C++/Stack_operations_using_Arrays.cpp b/Competitive Coding/Data Structures/Stack/Stack_C++/Stack_operations_using_Arrays.cpp new file mode 100644 index 000000000..f392781ad --- /dev/null +++ b/Competitive Coding/Data Structures/Stack/Stack_C++/Stack_operations_using_Arrays.cpp @@ -0,0 +1,95 @@ + +// All Operations on Stacks based on ARRAYS +//-------------------------------------------------------------------------------------- + +#include +#include +#include + +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" <=0;i--) + { + if (i == top) + cout<<"\n Top --> "; + cout <> 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); +} \ No newline at end of file From 78ac861cc519e8e2b400094bddac6fa3e59b859e Mon Sep 17 00:00:00 2001 From: Zanark Date: Mon, 25 Dec 2017 13:43:57 +0530 Subject: [PATCH 2/3] Added README.md --- .../Data Structures/Stack/Stack_C++/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Competitive Coding/Data Structures/Stack/Stack_C++/README.md diff --git a/Competitive Coding/Data Structures/Stack/Stack_C++/README.md b/Competitive Coding/Data Structures/Stack/Stack_C++/README.md new file mode 100644 index 000000000..220426fb9 --- /dev/null +++ b/Competitive Coding/Data Structures/Stack/Stack_C++/README.md @@ -0,0 +1,16 @@ +# C++ + +## Stack Operations + +### This Folder contains the following files: + +1. All Basic Stack Operations based on **Arrays** [File Link] + * *Inserting* an element onto the stack { **PUSH** } [Code] + * *Deleting* an element from the stack  { **POP**   } [Code] + * *Displaying* the Stack [Code] + +2. All Basic Stack Operations based on **Pointers** [File Link] + + * *Inserting* an element onto the stack { **PUSH** } [Code] + * *Deleting* an element from the stack  { **POP**   } [Code] + * *Displaying* the Stack [Code] \ No newline at end of file From 32cca9748dfbeea552c4b15549752af656e5c6b3 Mon Sep 17 00:00:00 2001 From: Zanark Date: Mon, 25 Dec 2017 23:20:36 +0530 Subject: [PATCH 3/3] Updated README.md --- .../Data Structures/Stack/Stack_C++/README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/Competitive Coding/Data Structures/Stack/Stack_C++/README.md b/Competitive Coding/Data Structures/Stack/Stack_C++/README.md index 220426fb9..83c2ebe22 100644 --- a/Competitive Coding/Data Structures/Stack/Stack_C++/README.md +++ b/Competitive Coding/Data Structures/Stack/Stack_C++/README.md @@ -4,13 +4,9 @@ ### This Folder contains the following files: -1. All Basic Stack Operations based on **Arrays** [File Link] - * *Inserting* an element onto the stack { **PUSH** } [Code] - * *Deleting* an element from the stack  { **POP**   } [Code] - * *Displaying* the Stack [Code] +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) -2. All Basic Stack Operations based on **Pointers** [File Link] + * *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) - * *Inserting* an element onto the stack { **PUSH** } [Code] - * *Deleting* an element from the stack  { **POP**   } [Code] - * *Displaying* the Stack [Code] \ No newline at end of file