Question: void stack: :do ( ) { for ( int i = 0 ; i topindex | ; i + + ) { T temp =

void stack: :do()
{
for(int i=0;i topindex|; i++)
{T temp=entry [i];
entry [i]= entry [topindex-i-1] ;
entry [topindex-1-i]=temp;
}
}
What is this method do?
a. Replace each item with next item value in the stack
b. Reverse the stack
C. Doesn't do anything
d. Swap the first item with the last one in the stack
 void stack: :do() { for(int i=0;i topindex|; i++) {T temp=entry [i];

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!