📄 fig07_03.cpp
字号:
template <typename Iterator>
void insertionSort( const Iterator & begin, const Iterator & end )
{
if( begin != end )
insertionSortHelp( begin, end, *begin );
}
template <typename Iterator, typename Object>
void insertionSortHelp( const Iterator & begin, const Iterator & end,
const Object & obj )
{
insertionSort( begin, end, less<Object>( ) );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -