Search:

Type: Posts; User: helloworld922

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    1,629

    Re: MergeSort not working Helppp please :(

    Ahh, didn't look through it that closely ::blush::
    dlorde's right, there is a flaw in your merge method. Do what he says and see if you can figure out what it is :)
  2. Replies
    4
    Views
    1,629

    Re: MergeSort not working Helppp please :(

    Your MergeSort method never returns the sorted list.


    public static int[] mergeSort(int[] data) {
    if (data.length > 1) {

    int mid = data.length / 2;

    ...
Results 1 to 2 of 2