Getting Started

Import CS201_Lab23.zip (File→Import...→General→Existing Projects into Workspace→Archive File). You should see a project called CS201_Lab23 in the Package Explorer.

Your Task

Implement the following static methods in the class called Recursion:

Note: this lab is challenging! A good goal would be to get at least one of the methods working. If you get both methods working, you have earned a recursion brown belt.

mergeSortWork

Merge sort is a simple but highly efficient sorting algorithm. It works by sorting a region of a sequence from a given start index (inclusive) to a given end index (exclusive).

The algorithm works as follows:

  1. if the region has less than 2 elements, do nothing (base case)
  2. otherwise,

    1. divide the region into halves and recursively sort each half
    2. merge the two sorted halves of the region into a merged list containing all of the elements in the region, in sorted order
    3. copy the elements from the merged list back to the region of the list being sorted

A method called merge is provided to merge the elements in two sorted halves of a region into a single sorted list.

permute

A permutation of a sequence is another sequence containing all of the values in the original sequence, but in which those values might be in a different order.

The permute method takes a list and returns a set containing all possible permutations of that list.

There is a very simple way to implement this method using recursion. Think about what an appropriate base case for this method might be. Then think about how you might use recursion to work towards this base case.

Hints:

To simplify your algorithm you will probably want to avoid directly modifying a list. Instead, make a copy and modify the copy. You can make a copy of a list by creating a new ArrayList and passing the list you want to copy to the constructor:

Approach

When you implement a method, remove the line of code reading

throw new UnsupportedOperationException("Not implemented yet");

A JUnit test class called RecursionTest contains test cases for each method.

As you think about how to implement each method, consider:

Submitting

When you are done, submit the lab to the Marmoset server using either of the methods below.

From Eclipse

If you have the Simple Marmoset Uploader Plugin installed, select the project (CS201_Lab23) in the package explorer and then press the blue up arrow button in the toolbar. Enter your Marmoset username and password when prompted.

From a web browser

Save the project (CS201_Lab23) to a zip file by right-clicking it and choosing

Export...→Archive File

Upload the saved zip file to the Marmoset server as lab23. The server URL is

https://cs.ycp.edu/marmoset/