Question: Please provide answer in Java method stack Problem 2 (Stacks) A and B are playing a game. In this game, both of them are initially

 Please provide answer in Java method stack Problem 2 (Stacks) A

Please provide answer in Java method stack

Problem 2 (Stacks) A and B are playing a game. In this game, both of them are initially provided with a list of n numbers. (Both have the same list but their own copy). Now, they both have a different strategy to play the game. A picks the element from start of his list. B picks from the end of his list. You need to generate the result in form of an output list. Method to be followed at each step to build the output list is: 1. If the number picked by A is bigger than B then this step'soutput is 1 . B removes the number that was picked from their list. 2. If the number picked by A is smaller than B then this step'soutput is 2 . A removes the number that was picked from their list. 3. If both have the same number then this step's output is 0 . Both A and B remove the number that was picked from their list. This game ends when at least one of them has no more elements to be picked i.e. when the list gets empty. Output the built output list. Input format: First line consists of a number n, size of the list provided. Next line consists of n numbers separated by space. Output format: Output the required output list. Constraints: 1NS106 15numbersinthelists109 Sample Input 3 - 23 Sample Output 220

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!