Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Sorting a Stack Recursively (25 points) In this lab assignment, you will create a Java application that sorts a stack recursively. Consider the following algorithm

Sorting a Stack Recursively (25 points)

In this lab assignment, you will create a Java application that sorts a stack recursively.

Consider the following algorithm to sort the entries in a stack S1:

1. First create two empty stacks, S2 and S3. At any given time, stack S2 will hold the entries in sorted order, with the smallest at the top of the stack. (You are sorting in ascending order.)

2. Put the top entry of S1 into T (a variable that can hold stack elements)

3. Pop and consider the top entry T of S1.

4. Pop entries of stack S2 and push them onto stack S3 until you reach the correct place to put T.

5. Then push T onto S2.

6. Next move entries from S3 to S2.

7. Repeat until S1 is empty and S2 contains the sorted stack.

Requirements:

1. Your application uses unbounded stacks from chapter 2 in your text.

2. Write a main method to create an unsorted stack and display the unsorted stack.

3. Send the stack to a method for sorting. Upon return from the method, display the now sorted stack.

4. Write a recursive method that accepts an unsorted Stack and returns a sorted Stack. The method should be generic and work for all types of stacks.

5. Test your recursive method to make sure it works for different types of stacks.

Hint: May want to use a public method that accepts the original stack and then creates the two additional stacks needed. This method then calls a private method that accepts all three stacks and does the recursive sort. Your methods should make sure all types of stacks passed contain comparable objects. Refer to the generic presentation in Shared Files.

Clearly label all the output written to the console.

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

Recommended Textbook for

Microsoft Visual Basic 2005 For Windows Mobile Web Office And Database Applications Comprehensive

Authors: Gary B. Shelly, Thomas J. Cashman, Corinne Hoisington

1st Edition

0619254823, 978-0619254827

More Books

Students also viewed these Databases questions

Question

13-6 How will MIS help my career?

Answered: 1 week ago

Question

13-4 What are alternative methods for building information systems?

Answered: 1 week ago