Question: Data structure ( C++ ). I want to ask If my answer for this question is correct or not ? 7. Write a procedure: POP
Data structure ( C++ ).
I want to ask If my answer for this question is correct or not ?
7. Write a procedure: POP (Deleting element from the Stack) and Function: STACK-EMPTY (Which returns TRUE, if the stack is empty and FALSE otherwise);
Pop
{
Top--;
return S[Top+1];
}
Stack_Empty
{
if(Top >= 0)
return false; .
else
return true;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
