FAQ: Merge Sort: Java - Review

This community-built FAQ covers the “Review” exercise from the lesson “Merge Sort: Java”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Pass the Technical Interview with Java

FAQs on the exercise Review

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in Language Help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to Language Help and Tips and Resources. If you are wanting feedback or inspiration for a project, check out Projects.

Looking for motivation to keep learning? Join our wider discussions in Community

Learn more about how to use this guide.

Found a bug? Report it online, or post in Bug Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

So I started lookning at the addtional challenge to combine the two lines inside the if else statements into one, and thought what a great moment to practice what I’ve learnt about ternary operators. I went a little further and put everything in one line, such that:

while (leftPos < left.length && rightPos < right.length) {
          merged[curIndex] = left[leftPos] < right[rightPos] ? left[leftPos++] : right[rightPos++];
          
          curIndex++;
        }

The best part is it worked!! Proud noob moment. :slight_smile:

I tried to rewrite the code to work for an ArrayList instead of an array.
I created copyOfRange and arraycopy​ functions for ArrayLists so that I wouldn’t need to change calling those.

code
    public ArrayList<Integer> sort(ArrayList<Integer> arr) {
      int length = arr.size();
      if (length <= 1) {
        return arr;
      }
      int mid = Math.floorDiv(length, 2);
      ArrayList<Integer> leftArray = copyOfRange(arr, 0, mid);
      ArrayList<Integer> rightArray = copyOfRange(arr, mid, length);
      return merge(sort(leftArray), sort(rightArray));
    }
    
    public static ArrayList<Integer> merge(ArrayList<Integer> left, ArrayList<Integer> right) {
        int length = left.size() + right.size();
        ArrayList<Integer> merged = new ArrayList<Integer>(length);
        int leftPos = 0;
        int rightPos = 0;
        int curIndex = 0;

        while (leftPos < left.size() && rightPos < right.size()) {
            if (left.get(leftPos) < right.get(rightPos)) {
                merged.add(left.get(leftPos));
                leftPos++;
            } else {
                merged.add(right.get(rightPos));
                rightPos++;
            }
            curIndex++; // same as merged.size()
        }

        arraycopy(left, leftPos, merged, curIndex, left.size() - leftPos);
        arraycopy(right, rightPos, merged, curIndex, right.size() - rightPos);
        return merged;
    }
    
    public static ArrayList<Integer> copyOfRange(ArrayList<Integer> arr, int fromIndex, int toIndex) {
      ArrayList<Integer> copy = new ArrayList<Integer>(toIndex - fromIndex);
      copy.addAll(arr.subList(fromIndex, toIndex));
      return copy;
    }
    
    public static ArrayList<Integer> arraycopy​(ArrayList<Integer> src, int srcPos, ArrayList<Integer> dest, int destPos, int length) {
      dest.addAll(destPos, src.subList(srcPos, srcPos + length));
      return dest;
    }
other version of merge method

A version of merge that concatenates the arraylists more directly.

    public static ArrayList<Integer> merge(ArrayList<Integer> left, ArrayList<Integer> right) {
      int length;
      if (left == null || left.size() == 0) {
        return right;
      }
      else if (right == null || right.size() == 0) {
        return left;
      }
      else {
        length = left.size() + right.size();
      }
      if (left.get(0) <= right.get(0)) {
        left.ensureCapacity(length);
        left.addAll(right);
        return left;
      }
      else {
        right.ensureCapacity(length);
        right.addAll(left);
        return right;
      }
    }

I guess that second version of the merge method does not work correctly.