Free Response - Horse Barn B

The following is a variation of part b of a free response question from 2012. It was question 3 on the exam. You can see all the free response questions from past exams at https://apstudents.collegeboard.org/courses/ap-computer-science-a/free-response-questions-by-year.

The original question had an interface called Horse, but the problem below has been changed to a class Horse instead of the interface. Interfaces are no longer covered on the AP CS A exam. However, you can still solve problems that have interfaces in them by changing them to a class, since an interface just describes the methods that a class must have.

Question 3. Consider a software system that models a horse barn.

public class Horse
{
   /** @return the horse's name */
   public String getName()
   { implementation not shown }

   /** @return the horse's weight */
   public int getWeight()
   { implementation not shown }

   // There may be other methods that are not shown

}

A horse barn consists of N numbered spaces. Each space can hold at most one horse. The spaces are indexed starting from 0; the index of the last space is N - 1. No two horses in the barn have the same name. The declaration of the HorseBarn class is shown below.

public class HorseBarn
{
   /** The spaces in the barn. Each array element holds a reference to the horse
    * that is currently occupying the space. A null value indicates an empty
    * space.
    */
   private Horse[] spaces;

   /** Consolidates the barn by moving horses so that the horses are in
    *  adjacent spaces, starting at index 0, with no empty space between
    *  any two horses.
    * Postcondition: The order of the horses is the same as before the
    *  consolidation.
    */
   public void consolidate()
   { /* to be implemented in part (b) */ }
}

Part b. Write the HorseBarn method consolidate. This method consolidates the barn by moving horses so that the horses are in adjacent spaces, starting at index 0, with no empty spaces between any two horses. After the barn is consolidated, the horses are in the same order as they were before the consolidation.

../_images/horseBarnB.png

Figure 1: Example calls and results

How to solve this problem

One way to solve this problem is to create a temporary array the same size as spaces and then loop through the current spaces array and if the current element isn’t null copy it to the temporary array. What kind of loop should you use? A for loop or an enhanced for loop would work for this problem. You will need an index for at least the temporary array.

While we are looping through the spaces array, we need to check for non-null positions.

Try to write the code for the method consolidate in the HorseBarn class. When you are ready click “Run” to test your solution.

Video - One way to code the solution

The following video is also on YouTube at https://youtu.be/3HytvgdLCNI. It walks through coding a solution.

You have attempted of activities on this page