sort.cpp
来自「C++ Primer(第三版)的随书源代码」· C++ 代码 · 共 31 行
CPP
31 行
#include <string>
using std::string;
typedef int (*PFI2S)( const string &, const string & );
int lexicoCompare( const string &, const string & );
void sort( string *s1, string *s2,
PFI2S compare = lexicoCompare )
{
// stopping condition for recursion
if ( s1 < s2 ) {
string elem = *s1;
string *low = s1;
string *high = s2 + 1;
for (;;) {
while ( compare( *++low, elem ) < 0 && low < s2) ;
while ( compare( elem, *--high ) < 0 && high > s1) ;
if ( low < high )
low->swap(*high);
else break;
} // end, for(;;)
s1->swap(*high);
sort( s1, high - 1 );
sort( high + 1, s2 );
} // end, if ( s1 < s2 )
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?