程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 利用sort實現vector結構體排序

利用sort實現vector結構體排序

編輯:關於C語言
 

#include "stdafx.h"

#include <vector>
#include <algorithm>
#include <functional>

using namespace std;

struct AssessTypeInfo
{
unsigned int m_uiType; //類型ID
char m_szName[64]; //類型名稱
unsigned int m_uiTotal; //總分數

};
bool lessmark(const AssessTypeInfo& s1,const AssessTypeInfo& s2)
{
return s1.m_uiType < s2.m_uiType;
}

bool greatermark(const AssessTypeInfo& s1,const AssessTypeInfo& s2)
{
return s1.m_uiType > s2.m_uiType;
}

int main()
{
vector<AssessTypeInfo > ctn ;

AssessTypeInfo a1;
a1.m_uiType=1;

AssessTypeInfo a2;
a2.m_uiType=2;
AssessTypeInfo a3;
a3.m_uiType=3;
ctn.push_back(a1);
ctn.push_back(a2);
ctn.push_back(a3);
sort(ctn.begin(), ctn.end(),lessmark) ; //升序排序

for ( int i=0; i<3; i++ )
printf("%d\n",ctn[i].m_uiType);

sort(ctn.begin(), ctn.end(),greatermark) ; //降序排序


return 0 ;
}

 

以上方法就可以實現升序排序,輸出結果為 1 2 3

降序排序結果3 2 1。

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved