sort排序
摘要:
#include<iostream>#include<algorithm>#include<string.h>#include<stdio.h>using namespace std;struct node{ int t1; int t2;}a[100];int cmp(struct node a,struct node b){ if(a.t1>b.t1)//从小到大排序 return 0; else if(a.t1==b.t1) { if(a.t2>b.t2) return 0; else ... 阅读全文
posted @ 2013-04-18 11:28 后端bug开发工程师 阅读(315) 评论(2) 推荐(0) 编辑