User not logged in - login - register
Home Calendar Books School Tool Photo Gallery Message Boards Users Statistics Advertise Site Info
go to bottom | |
 Message Boards » » java help Page [1]  
Novicane
All American
15413 Posts
user info
edit post

Im looking at some pseudo code. The following snippet (straight off of wiki). It initializes a sort using an array passed into the sorting method ( as m ). Im not to clear on what else statement is saying:


middle = length(m) / 2
for each x in m up to middle
add x to left
for each x in m after middle
add x to right
left = mergesort(left)
right = mergesort(right)


I understand the middle variable and that left and right recursively call that sorting method. "for each add x in m after middle" is slightly confusing.

[Edited on April 20, 2006 at 6:44 PM. Reason : d]

4/20/2006 6:44:12 PM

bigben1024
All American
7167 Posts
user info
edit post

it simply splits the array in "half" and calls mergesort with each half.

[Edited on April 20, 2006 at 10:41 PM. Reason : .]

4/20/2006 10:40:40 PM

FenderFreek
All American
2805 Posts
user info
edit post

Seems to me that the first half of the array elements are added to the variable "left" then the second half are added to "right", then the resulting variables are passed to the mergesort method and the return is written back to those variables.

4/20/2006 11:43:16 PM

skokiaan
All American
26447 Posts
user info
edit post

Now you can't do it like this


public class MergeSort extends Sort {

int[] scratch;

public MergeSort(boolean trace)
{
}

public int[] sort ()
{
scratch = new int[data.length];

mergesort( data, 0, data.length - 1);

return data;
}

private void mergesort( int[] list, int left, int right )
{
if( right <= left )
{
return;
}

int middle = (right+left)/2;

mergesort(list, left, middle);
mergesort(list, middle + 1, right);

merge(list, left, middle , right);
}

private void merge( int[] list, int left, int middle, int right)
{
for( int i = left; i < right + 1; i++)
{
scratch[ i ] = list[ i ];
}

int leftCursor = left;
int rightCursor = middle + 1;
int mainCursor = left;

while( leftCursor < middle + 1 && rightCursor < right + 1)
{
if( scratch[ rightCursor ] < scratch[ leftCursor ])
{
list[ mainCursor ] = scratch[ rightCursor ];
rightCursor++;
}
else
{
list[ mainCursor ] = scratch[ leftCursor ];
leftCursor++;
}

mainCursor++;
}


while( leftCursor < middle + 1)
{
list[ mainCursor ] = scratch[ leftCursor ];
leftCursor++;

mainCursor++;
}

while( rightCursor < right + 1 )
{
list[ mainCursor ] = scratch[ rightCursor ];
rightCursor++;

mainCursor++;
}
}
}



[Edited on April 20, 2006 at 11:56 PM. Reason : dpwnt]

4/20/2006 11:55:18 PM

 Message Boards » Tech Talk » java help Page [1]  
go to top | |
Admin Options : move topic | lock topic

© 2024 by The Wolf Web - All Rights Reserved.
The material located at this site is not endorsed, sponsored or provided by or on behalf of North Carolina State University.
Powered by CrazyWeb v2.38 - our disclaimer.