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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!