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

void stack::do(){
for(int i=0. i=topindex/2;i++){
T temp=entry[i];
entry[i]=entry[topindex-i-1];
entry[topindex-1-i]=temp;}
}
Assume the stack is array based. What is this method do?
a. swap the first item with last item
b. reverse the stack
c. replace each item with next item value
d. doesn't do any thing
 void stack::do(){ for(int i=0. i=topindex/2;i++){ T temp=entry[i]; entry[i]=entry[topindex-i-1]; entry[topindex-1-i]=temp;} } Assume

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!