std list/vector sort 排序就這麼簡單
網上江湖郎中和蒙古大夫很多,因此,此類帖子也很多。關於排序,我還真沒研究過,看了江湖郎中和蒙古大夫的帖子,搞了半天不行,所以,自己研究了一下,如下:三種方式都可以,如重寫<,()和寫比較函式compare_index。但是要注意物件和物件指標的排序區別。
1、容器中是物件時,用操作符<或者比較函式,比較函式引數是引用。
2、容器中是物件指標時,用()和比較函式排序都可以,比較函式引數是指標。
3、list用成員方法sort
4、vector用sort函式
- class TestIndex{
- public:
- int index;
- TestIndex(){
- }
- TestIndex(int _index):index(_index){
- }
- bool operator()(const TestIndex* t1,const TestIndex* t2){
- printf("Operator():%d,%d/n",t1->index,t2->index);
- return t1->index < t2->index;
- }
- bool operator < (const TestIndex& ti) const {
- printf("Operator<:%d/n",ti.index);
- return index < ti.index;
- }
- };
- bool compare_index(const TestIndex* t1,const TestIndex* t2){
- printf("CompareIndex:%d,%d/n",t1->index,t2->index);
- return t1->index < t2->index;
- }
- int main(int argc, char** argv) {
- list<TestIndex*> tiList1;
- list<TestIndex> tiList2;
- vector<TestIndex*> tiVec1;
- vector<TestIndex> tiVec2;
- TestIndex* t1 = new TestIndex(2);
- TestIndex* t2 = new TestIndex(1);
- TestIndex* t3 = new TestIndex(3);
- tiList1.push_back(t1);
- tiList1.push_back(t2);
- tiList1.push_back(t3);
- tiList2.push_back(*t1);
- tiList2.push_back(*t2);
- tiList2.push_back(*t3);
- tiVec1.push_back(t1);
- tiVec1.push_back(t2);
- tiVec1.push_back(t3);
- tiVec2.push_back(*t1);
- tiVec2.push_back(*t2);
- tiVec2.push_back(*t3);
- printf("tiList1.sort()/n");
- tiList1.sort();//無法正確排序
- printf("tiList2.sort()/n");
- tiList2.sort();//用<比較
- printf("tiList1.sort(TestIndex())/n");
- tiList1.sort(TestIndex());//用()比較
- printf("sort(tiVec1.begin(),tiVec1.end())/n");
- sort(tiVec1.begin(),tiVec1.end());//無法正確排序
- printf("sort(tiVec2.begin(),tiVec2.end())/n");
- sort(tiVec2.begin(),tiVec2.end());//用<比較
- printf("sort(tiVec1.begin(),tiVec1.end(),TestIndex())/n");
- sort(tiVec1.begin(),tiVec1.end(),TestIndex());//用()比較
- printf("sort(tiVec1.begin(),tiVec1.end(),compare_index)/n");
- sort(tiVec1.begin(),tiVec1.end(),compare_index);//用compare_index比較
- return 0;
- }
(原文地址: http://blog.csdn.net/marising/article/details/4567531)
相關文章
- std::vector 和 std::list 區別
- 堆排序就這麼簡單排序
- 快速排序就這麼簡單排序
- 基數排序就這麼簡單排序
- 歸併排序就這麼簡單排序
- 插入排序就這麼簡單排序
- 選擇排序就這麼簡單排序
- 氣泡排序就這麼簡單排序
- List集合就這麼簡單【原始碼剖析】原始碼
- Elasticsearch就這麼簡單Elasticsearch
- 簡單選擇排序(Simple Selection Sort)排序
- 泛型就這麼簡單泛型
- List排序Collections.sort 重寫compare排序
- SpringMVC入門就這麼簡單SpringMVC
- SpringDataJPA入門就這麼簡單Spring
- Mac文字排序編輯工具:Magic Sort ListMac排序
- C++筆記— 排序函式sort() 和vector容器C++筆記排序函式
- C++(std::vector)C++
- elasticsearch實現簡單的指令碼排序(script sort)Elasticsearch指令碼排序
- LinkedHashMap就這麼簡單【原始碼剖析】HashMap原始碼
- 策略模式原來就這麼簡單!模式
- TreeMap就這麼簡單【原始碼剖析】原始碼
- python用List的內建函式list.sort進行排序Python函式排序
- 拓撲排序就這麼回事排序
- for (auto it = _list.begin(); it != _list.end(); )關於在for迴圈中使用std::vector中的begin和end
- SpringBoot獲取配置檔案,就這麼簡單。Spring Boot
- zookeeper核心之ZAB協議就這麼簡單!協議
- Java實現一個棧就這麼簡單Java
- c++ std::vector 切記C++
- sort排序排序
- C++簡單vectorC++
- 原來寫個Vue 首頁就這麼簡單Vue
- Druid資料庫連線池就這麼簡單UI資料庫
- std::sort 錯誤"Expression : invalid operator <"Express
- 簡單幾步讓你的Excel表格變漂亮,學會Excel就這麼簡單!Excel
- C++ vector<std::tuple<XXX, XXX, XXX>>C++
- [LeetCode] 148. Sort ListLeetCode
- LeetCode | 148. Sort ListLeetCode
- Arrays.sort(arr)是什麼排序排序