| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1472 人关注过本帖
标题:[求助][急]链表排序..
只看楼主 加入收藏
leeco
Rank: 4
等 级:贵宾
威 望:10
帖 子:1029
专家分:177
注 册:2007-5-10
收藏
得分:0 

程序代码:

#include <iostream>
#include <functional>
#include <algorithm>
using namespace std;

struct Node{
double h;
double w;
Node(){}
Node(double hh,double ww){h=hh;w=ww;}
};

ostream& operator << (ostream& out,const Node& t)
{
return out<<t.h<<\"\t\"<<t.w;
}

struct less_h:binary_function<Node,Node,bool>{
bool operator () (const Node& a,const Node& b){
return a.h<b.h;
}
};

struct less_w:binary_function<Node,Node,bool>{
bool operator () (const Node& a,const Node& b){
return a.w<b.w;
}
};

template <class T>
void out(T* arr,size_t n)
{
for(int i=0;i<n;i++){
cout<<arr[i]<<endl;
}
cout<<endl;
}

int main()
{
Node arr[3]={Node(180.5,55),Node(172,74),Node(160,65)};

cout<<\"Before sort\"<<endl;
out(arr,3);

cout<<\"Sort by height\"<<endl;
sort(arr,arr+3,less_h());
out(arr,3);

cout<<\"Sort by weight\"<<endl;
sort(arr,arr+3,less_w());
out(arr,3);
}

2007-08-11 23:18
aipb2007
Rank: 8Rank: 8
来 自:CQU
等 级:贵宾
威 望:40
帖 子:2879
专家分:7
注 册:2007-3-18
收藏
得分:0 
回复:(leeco)[code]#include #inc...
thx.
仔细研究中,问题我早上解决了,不过不是用的这种方法。
无论如何,谢谢你!

Fight  to win  or  die...
2007-08-11 23:23
快速回复:[求助][急]链表排序..
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.020701 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved