Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago