Question: Write a method called equals that accepts two stacks of integers as parameters and returns true if the two stacks store exactly the same sequence
Write a method called equals that accepts two stacks of integers as parameters and returns true if the two stacks store exactly the same sequence of integer values in the same order. Your method must restore the two stacks to their original state before returning. Use one stack as auxiliary storage.
Step by Step Solution
3.38 Rating (160 Votes )
There are 3 Steps involved in it
public boolean equals Stack s1 Stack s2 Stack s3 new Stack ... View full answer
Get step-by-step solutions from verified subject matter experts
