SortStringArray.cpp
资源名称:(vc).rar [点击查看]
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:1k
源码类别:
Telnet服务器
开发平台:
Visual C++
- // SortStringArray.cpp: Implementierung der Klasse CSortStringArray.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "SortStringArray.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- //////////////////////////////////////////////////////////////////////
- // Konstruktion/Destruktion
- //////////////////////////////////////////////////////////////////////
- void CSortStringArray::Sort()
- {
- BOOL bNotDone = TRUE;
- while (bNotDone)
- { bNotDone = FALSE;
- for(int pos = 0;pos < GetUpperBound();pos++)
- bNotDone |= CompareAndSwap(pos);
- }
- }
- BOOL CSortStringArray::CompareAndSwap( int pos )
- {
- CString temp;
- int posFirst = pos;
- int posNext = pos + 1;
- if (GetAt(posFirst).CompareNoCase(GetAt(posNext)) > 0)
- {
- temp = GetAt(posFirst);
- SetAt(posFirst, GetAt(posNext));
- SetAt(posNext, temp);
- return TRUE;
- }
- return FALSE;
- }