Click here to Skip to main content
15,886,873 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Problem in closing the thread Pin
Cedric Moonen14-Dec-10 20:45
Cedric Moonen14-Dec-10 20:45 
AnswerRe: Problem in closing the thread Pin
User 742933814-Dec-10 22:06
professionalUser 742933814-Dec-10 22:06 
AnswerRe: Problem in closing the thread Pin
yu-jian15-Dec-10 2:55
yu-jian15-Dec-10 2:55 
QuestionQuestion on MFC program execution procedure [modified] Pin
cy163@hotmail.com14-Dec-10 2:14
cy163@hotmail.com14-Dec-10 2:14 
AnswerRe: Question on MFC program execution procedure Pin
bleedingfingers14-Dec-10 2:55
bleedingfingers14-Dec-10 2:55 
AnswerRe: Question on MFC program execution procedure Pin
David Crow14-Dec-10 3:02
David Crow14-Dec-10 3:02 
AnswerRe: Question on MFC program execution procedure Pin
yu-jian14-Dec-10 17:59
yu-jian14-Dec-10 17:59 
QuestionBubble sort in CObList [modified] Pin
mesajflaviu14-Dec-10 1:10
mesajflaviu14-Dec-10 1:10 
It can be posible to (bubble) sort an ObList after some criteria ?
Here I have :
typedef CTypedPtrList<<CObList, CDrawObj*>> CDrawObjList;

and then :
CDrawObjList ObjList;
for(int i = 0;i < 5;++i)
{
    CDrawObj* pObj = new CDrawObj(CRect(ptOrigin,sizeRect));
    //    which sizeRect , and ptOrigin will be aleatory 
    ObjList.AddTail(pObj)
}

ok , by now seems to be 5 element in objects array

My question is , how can sort elements of ObjList after follow criteria :
POSITION pos = ObjList.GetHeadPosition();
while(pos)
{
    CDrawObj* pObj1 = ObjList.GetNext(pos);
            if(pos == NULL)break;
            CDrawObj* pObj2 = ObjList.GetNext(pos);
            if(pObj1->m_position.left > pObj2->m_position.left)
                // switch pObj1 and pObj2 between them ... but how ?
}


any hint or ideas will be apreciated . Thank you !!!

modified on Tuesday, December 14, 2010 7:38 AM

AnswerRe: Bubble sort in CObList Pin
Richard MacCutchan14-Dec-10 1:59
mveRichard MacCutchan14-Dec-10 1:59 
GeneralRe: Bubble sort in CObList Pin
Cedric Moonen14-Dec-10 2:12
Cedric Moonen14-Dec-10 2:12 
AnswerRe: Bubble sort in CObList Pin
Cedric Moonen14-Dec-10 2:01
Cedric Moonen14-Dec-10 2:01 
GeneralRe: Bubble sort in CObList Pin
mesajflaviu14-Dec-10 2:13
mesajflaviu14-Dec-10 2:13 
GeneralRe: Bubble sort in CObList Pin
Cedric Moonen14-Dec-10 2:18
Cedric Moonen14-Dec-10 2:18 
GeneralRe: Bubble sort in CObList Pin
mesajflaviu14-Dec-10 8:43
mesajflaviu14-Dec-10 8:43 
GeneralRe: Bubble sort in CObList Pin
Rajesh R Subramanian14-Dec-10 19:53
professionalRajesh R Subramanian14-Dec-10 19:53 
GeneralRe: Bubble sort in CObList Pin
mesajflaviu14-Dec-10 21:15
mesajflaviu14-Dec-10 21:15 
GeneralRe: Bubble sort in CObList Pin
thomas.michaud15-Dec-10 3:35
thomas.michaud15-Dec-10 3:35 
AnswerRe: Bubble sort in CObList Pin
Eugen Podsypalnikov14-Dec-10 11:56
Eugen Podsypalnikov14-Dec-10 11:56 
GeneralRe: Bubble sort in CObList Pin
mesajflaviu14-Dec-10 21:14
mesajflaviu14-Dec-10 21:14 
AnswerRe: Bubble sort in CObList Pin
bleedingfingers14-Dec-10 20:27
bleedingfingers14-Dec-10 20:27 
AnswerRe: Bubble sort in CObList Pin
L. Braun14-Dec-10 21:16
L. Braun14-Dec-10 21:16 
GeneralRe: Bubble sort in CObList Pin
mesajflaviu14-Dec-10 23:59
mesajflaviu14-Dec-10 23:59 
AnswerRe: Bubble sort in CObList Pin
Michael Waters15-Dec-10 6:51
Michael Waters15-Dec-10 6:51 
GeneralRe: Bubble sort in CObList Pin
David Crow15-Dec-10 7:59
David Crow15-Dec-10 7:59 
GeneralRe: Bubble sort in CObList Pin
mesajflaviu15-Dec-10 8:40
mesajflaviu15-Dec-10 8:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.