the array is an array of strings. the array is {"hello", "how", "are", "you", "?"}
it sort of works but he only thing is that the printout mixes up the last 2 elements and when i run my program the prinout comes out as you ? are how hello, it should be ? you are how hello.
I put in a print statement to see what my left and right are and if they switch but that didnt help since they only printed out the start values and nothing else.
any help would be appreciated. or why is it printing out wrong? is it not doing the recursion?
this is my method, it has to be done with divide and conquer
public void outrev()
{
outrev(0,a.length-1);
}
private void outrev(int left, int right)
{
System.out.println("left a[" + left + "] is " + a[left]);
System.out.println("right a[" + right + "] is " + a[right]);
int mid;
if(left > right)
{
//do nothing
}
else if(left == right)
{
System.out.print(a[left]);
}
else
{
mid = (left + right) / 2;
outm(mid+1, right);
System.out.print(a[mid] + " ");
outm(left, mid-1);
}
}
outm? – Sandip Agarwal Sep 28 '11 at 5:22outm? Shouldn't it beoutrev? – Sandip Agarwal Sep 28 '11 at 5:46outmis replaced withoutrev, then I think the piece of code is correct. Please remark the first two println statements when getting the output. Else the program would give correct output. – Sandip Agarwal Sep 28 '11 at 6:48