It always can be done!!!
Main Topics
Browse All TopicsHow can I use quick sort with CList? I could not figure out how to use qsort with CList. Please can somebody point me to an algorithm?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This article was contributed by Douglas Peterson.
// SortableObList.h
//////////////////////////
class CSortableObList : public CObList
{
public:
CSortableObList(int nBlockSize = 10) : CObList(nBlockSize) { }
void Sort(int(*CompareFunc)(COb
void Sort(POSITION posStart, int iElements, int (*CompareFunc)(CObject* pFirstObj, CObject* pSecondObj));
};
template< class TYPE >
class CTypedSortableObList : public CSortableObList
{
public:
// Construction
CTypedSortableObList(int nBlockSize = 10) : CSortableObList(nBlockSize
// peek at head or tail
TYPE& GetHead()
{ return (TYPE&)CSortableObList::Ge
TYPE GetHead() const
{ return (TYPE)CSortableObList::Get
TYPE& GetTail()
{ return (TYPE&)CSortableObList::Ge
TYPE GetTail() const
{ return (TYPE)CSortableObList::Get
// get head or tail (and remove it) - don't call on empty list!
TYPE RemoveHead()
{ return (TYPE)CSortableObList::Rem
TYPE RemoveTail()
{ return (TYPE)CSortableObList::Rem
// add before head or after tail
POSITION AddHead(TYPE newElement)
{ return CSortableObList::AddHead(n
POSITION AddTail(TYPE newElement)
{ return CSortableObList::AddTail(n
// add another list of elements before head or after tail
void AddHead(CTypedSortableObLi
{ CSortableObList::AddHead(p
void AddTail(CTypedSortableObLi
{ CSortableObList::AddTail(p
// iteration
TYPE& GetNext(POSITION& rPosition)
{ return (TYPE&)CSortableObList::Ge
TYPE GetNext(POSITION& rPosition) const
{ return (TYPE)CSortableObList::Get
TYPE& GetPrev(POSITION& rPosition)
{ return (TYPE&)CSortableObList::Ge
TYPE GetPrev(POSITION& rPosition) const
{ return (TYPE)CSortableObList::Get
// getting/modifying an element at a given position
TYPE& GetAt(POSITION position)
{ return (TYPE&)CSortableObList::Ge
TYPE GetAt(POSITION position) const
{ return (TYPE)CSortableObList::Get
void SetAt(POSITION pos, TYPE newElement)
{ CSortableObList::SetAt(pos
void Sort( int(*CompareFunc)(TYPE pFirstObj, TYPE pSecondObj) )
{ CSortableObList::Sort((int
void Sort( POSITION posStart, int iElements, int(*CompareFunc)(TYPE pFirstObj, TYPE pSecondObj) )
{ CSortableObList::Sort(posS
};
// SortableObList.cpp
//////////////////////////
void CSortableObList::Sort(int (*CompareFunc)(CObject* pFirstObj, CObject* pSecondObj))
{
// CompareFunc is expected to return a positive integer if pFirstObj
// should follow pSecondObj (is greater than)
// Uses Insertion Sort
// The Shell Sort is much faster than a straight insertion sort, however, it cannot
// be performed on a linked list (it COULD, but the resulting code would probably be
// much slower as a Shell Sort jumps all around the reletive positions of elements).
// An Insertion Sort works by evaluating an item, if that item should
// precede the item in front of it, than it shifts all the items that
// should follow that item up one place until it finds the correct position
// for the item, whereby it then 'inserts' that item.
ASSERT_VALID(this);
// If the list contains no items, the HEAD position will be NULL
if (m_pNodeHead == NULL)
return;
CObject *pOtemp;
CObList::CNode *pNi,*pNj;
// Walk the list
for (pNi = m_pNodeHead->pNext; pNi != NULL; pNi = pNi->pNext)
{
// Save data pointer
pOtemp = pNi->data;
// Walk the list backwards from pNi to the beginning of the list or until
// the CompareFunc() determines that this item is in it's correct position
// shifting all items upwards as it goes
for (pNj = pNi; pNj->pPrev != NULL && CompareFunc(pNj->pPrev->da
pNj->data = pNj->pPrev->data;
// Insert data pointer into it's proper position
pNj->data = pOtemp;
}
}
void CSortableObList::Sort(POSI
{
// This variation allows you to sort only a portion of the list
// iElements can be larger than the number of remaining elements without harm
// iElements can be -1 which will always sort to the end of the list
ASSERT_VALID(this);
ASSERT( AfxIsValidAddress((CObList
// Make certain posStart is a position value obtained by a GetHeadPosition or Find member function call
// as there is no way to test whether or not posStart is a valid CNode pointer from this list.
// Ok, there is one way, we could walk the entire list and verify that posStart is in the chain, but even
// for debug builds that's a bit much.
// If the list contains no items, the HEAD position will be NULL
if (m_pNodeHead == NULL)
return;
CObject *pOtemp;
CObList::CNode *pNi,*pNj;
// Walk the list
for (pNi = (CObList::CNode*)posStart;
{
// Save data pointer
pOtemp = pNi->data;
// Walk the list backwards from pNi to the beginning of the sort or until
// the CompareFunc() determines that this item is in it's correct position
// shifting all items upwards as it goes
for (pNj = pNi; pNj->pPrev != NULL && pNj->pPrev != ((CObList::CNode*)posStart
pNj->data = pNj->pPrev->data;
// Insert data pointer into it's proper position
pNj->data = pOtemp;
}
}
// Usage
//////////////////////////
// Create a CObject based class
class CMyObject : public CObject
{
public:
CString name;
static int CompBackward(CObject* pFirstObj, CObject* pSecondObj)
{
return -lstrcmp(((CMyObject*)pFir
}
};
// Create a list object
CTypedSortableObList< CMyObject* > list;
// Fill the list with a bunch of objects
for (int i=0; i < 10; i++)
{
CMyObject * pObj = new CMyObject;
pObj->name.Format("Object #%d",i);
list.AddTail(pObj);
}
// Sort the list
list.Sort(CMyObject::CompB
// Display the contents of the now sorted list
for (POSITION pos = list.GetHeadPosition(); pos != NULL; )
{
CMyObject* pObj = list.GetNext(pos);
TRACE1("%s\n",pObj->name);
}
I think I still need help, Here is my code:
void qsort (CList <CRecord,CRecord&> &m_Node,long l,long r)
{
long i,j,x;
POSITION posi,posj;
i=l;
j=r;
posi = m_Node.FindIndex(i);//thes
posj = m_Node.FindIndex(j);//cost
x = m_Node.GetAt(posi).x;
do
{
while (m_Node.GetAt(posi).x < x) {m_Node.GetNext(posi);i++;
while (x < m_Node.GetAt(posj).x) {m_Node.GetPrev(posj);j--;
if (i<=j)
{
swap(m_Node.GetAt(posi),m_
i++;j--;m_Node.GetNext(pos
}//if
}while ((i<j));
if (l<j) qsort(m_Node,l,j);
if (i<r) qsort(m_Node,i,r);
}
anyway to optimize the FindIndex functions
As you've noticed, finding an indexed element of a linked list is very expensive; it's an O(n) operation, unless you've indexed the list. But then you're just deferring the cost--you have to spend time on the indexing.
The short answer is that, to optimize your code, you shouldn't use a linked list--use an array, instead. If you must use a linked list, you should use a sorting algorithm that's more friendly for lists.
.B ekiM
If you must use a list, it is probably best to sort the list as it is created. As you insert each item, traverse the list to see where it belongs and add it at the corresponding place.
As for your quicksort, you shouldn't work with subscripts when working with lists, only work with POSITION pointers. Start off with pointers to head and tail of the list. Move the pointers in as per quicksort doing the exchange. Then call recursively.
Perhaps this might work better...
void qsort (CList <CRecord,CRecord&> &list)
{
// call helper to srto entire array
POSITION posl = list.GetHeadPosition();
POSITION posr = list.GetTailPosition();
qsort_helper(list,posl,pos
}
void qsort_helper (CList <CRecord,CRecord&> &list,POSITION posl,POSITION posr)
{
// start from ends
POSITION posi=posl,posj=posr;
// compute partition value to be average of ends
long xi = list.GetAt(posi).x;
long xj = list.GetAt(posj).x;
long x = (xi+xj)/2;
// loop
for (;;) {
// move lower partition right
while (posi != posj && list.GetAt(posi).x <= x) {
list.GetNext(posi);
}
// move upper partition left
while (posj != posi && x <= list.GetAt(posj).x) {
list.GetPrev(posj);
}
// if we meet in the middle, stop
if (posi == posj) break;
// swap the wrongly positioned items
swap(list.GetAt(posi),list
}
// move out a bit
while (posi != posl && x <= list.GetAt(posi).x) {
list.GetPrev(posi);
}
while (posj != posr && list.GetAt(posj).x <= x) {
list.GetNext(posj);
}
// recursively call helper to sort sublists
if (posl != posj) qsort_helper (list,posl,posj);
if (posi != posr) qsort_helper (list,posi,posr);
}
Business Accounts
Answer for Membership
by: chensuPosted on 1998-04-01 at 17:22:37ID: 1317382
I don't think it can be done with CList. Use list template class in STL instead. It has a member function sort.