My quickSort doesn't work. I'm particularly unsure about what to pass through to the partition algorithm and how to manage the pivot as in one case it becomes a header node and in the other case a last node. I based my approach on the solution for arrays. Here's my attempt. Any ideas? Please note that the partioning algorithm was chosen to suit the one-directional nature of a singly-linked list(SLL).
public static SLL quickSort(SLL list, SLLNode first, SLLNode last)
{
if (first != null && last != null)
{
SLLNode p = partition(list, first, last) ;
quickSort(list,first,p) ;
quickSort(list,p.succ, last) ;
}
return list ;
}
public static SLLNode partition(SLL list, SLLNode first, SLLNode last)
{
//last.succ = null ;
SLLNode p = first ;
SLLNode ptr = p.succ ;
while (ptr!=null)
{
if (ptr.data.compareToIgnoreCase(p.data)<0)
{
String pivot = p.data ;
p.data = ptr.data ;
ptr.data = p.succ.data ;
p.succ.data = pivot ;
p = p.succ ;
}
ptr = ptr.succ ;
}
return p ;
}
[EDIT]
I want to do this 'in-place'
I am looking for help specifically on how to manage head and last in this process.
Please don't suggest alternatives unless my approach is imposible