C++ Stack Exercises: Delete all occurrences of an item in a stack
C++ Stack: Exercise-13 with Solution
Write a C++ program to delete all occurrences of an item in a stack using arrays.
Test Data:
Input some elements onto the stack:
Stack elements are: 5 2 2 4 7
Remove 2 from the said stack:
Stack elements are: 5 4 7
Sample Solution:
C++ Code:
#include <iostream>
using namespace std;
#define MAX_SIZE 15 // Maximum size of stack
class Stack {
private:
int top; // Index of top element
int arr[MAX_SIZE]; // Array to store elements
public:
Stack() {
top = -1; // Initialize top index to -1 (empty stack)
}
bool push(int x) {
if (isFull()) {
cout << "Stack overflow" << endl;
return false;
}
// Increment top index and add element to array
arr[++top] = x;
return true;
}
int pop() {
if (isEmpty()) {
cout << "Stack underflow" << endl;
return 0;
}
// Return top element and decrement top index
return arr[top--];
}
int peek() {
if (isEmpty()) {
cout << "Stack is empty" << endl;
return 0;
}
// Return top element without modifying top index
return arr[top];
}
bool isEmpty() {
// Stack is empty if top index is -1
return (top < 0);
}
bool isFull() {
// Stack is full if top index is equal to MAX_SIZE - 1
return (top >= MAX_SIZE - 1);
}
void display() {
if (top < 0) {
cout << "Stack is empty" << endl;
return;
}
cout << "\nStack elements are: ";
for (int i = top; i >= 0; i--)
cout << arr[i] << " ";
cout << endl;
}
void delete_specific_element(Stack& stk, int element) {
if (stk.isEmpty()) {
cout << "Stack is empty." << endl;
return;
}
int size = stk.top + 1;
int temp[size];
int count = 0;
// Copy stack elements into a temporary array
while (!stk.isEmpty()) {
int current = stk.pop();
if (current != element) {
temp[count++] = current;
}
}
// Push non-matching elements back onto the stack
for (int i = count-1; i >= 0; i--) {
stk.push(temp[i]);
}
}
};
int main() {
Stack stk;
cout << "Input some elements onto the stack:";
stk.push(7);
stk.push(4);
stk.push(2);
stk.push(2);
stk.push(5);
stk.display();
cout << "\nRemove 2 from the said stack:";
stk.delete_specific_element(stk, 2);
stk.display();
cout << "\nInput two more elements onto the stack:";
stk.push(7);
stk.push(5);
stk.display();
cout << "\nRemove 7 from the said stack:";
stk.delete_specific_element(stk, 7);
stk.display();
cout << endl;
}
Sample Output:
Input some elements onto the stack: Stack elements are: 5 2 2 4 7 Remove 2 from the said stack: Stack elements are: 5 4 7 Input two more elements onto the stack: Stack elements are: 5 7 5 4 7 Remove 7 from the said stack: Stack elements are: 5 5 4
Flowchart:



CPP Code Editor:
Contribute your code and comments through Disqus.
Previous C++ Exercise: Remove duplicates from a stack using arrays.
Next C++ Exercise: Kth element of a stack from top position.
What is the difficulty level of this exercise?
C++ Programming: Tips of the Day
Can you remove elements from a std::list while iterating through it?
You have to increment the iterator first (with i++) and then remove the previous element (e.g., by using the returned value from i++). You can change the code to a while loop like so:
std::list<item*>::iteratori = items.begin(); while (i != items.end()) { boolisActive = (*i)->update(); if (!isActive) { items.erase(i++); // alternatively, i = items.erase(i); } else { other_code_involving(*i); ++i; } }
Ref : https://bit.ly/3smQY4u
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises