摘要: /*结构体里的数比较大小,只可以用小于号,不可以用大于号只能在p<a.p(升序)改a.p<p(降序)*/#include<iostream>#include <conio.h>#include<algorithm>using namespace std;struct node{ int p; bool operator < (const node &a)const { return p<a.p; }};int main(){ node no[7]={1,2,9,4,8,6,7}; sort(no,no+7); for(int 阅读全文
posted @ 2012-10-03 20:00 myth_HG 阅读(1216) 评论(0) 推荐(0) 编辑