基本排序方法實現:選擇排序、插入排序、希爾排序

三個基本排序問題的實現,先給出幾個公用的比較函數、元素交換函數和顯示函數。html #include <iostream> using namespace std; #define ElementType char bool lessFunc(ElementType cur, ElementType ref) //比較函數 { return cur < ref; } void exch(
相關文章
相關標籤/搜索