热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

boost::hash初学乍练,呵呵

昨天编译,安装好了boost,今天想小试一把。以前看了些书,都说STL里面缺少了hash,而boost::hash也基本确定进入C++0X的标准了,何不试一下boot::hash呢?浏览了一下boos
昨天编译,安装好了boost,今天想小试一把。以前看了些书,都说STL里面缺少了hash,而boost::hash也基本确定进入C++0X的标准了,何不试一下boot::hash呢?浏览了一下boost::hash的document,感觉不太难,试试了。现在Dev-CPP中设置好include和lib的路径,代码如下(贴代码凑文章了,呵呵):

#include
#include

using namespace std;
using namespace boost;

class X {
  public:
    X(int i): val_(i) {}
    int get_val() const { return val_; }
  private:
    int val_;
};

//construct a hash function for class X
size_t hash_value(const X &x)
{
  boost::hash hasher;
  return hasher(x.get_val());
}

int main(int argc, char *argv[])
{
  boost::hash string_hash;
  hash double_hash;
  hash > vector_hash;
  //hash for user defined type
  hash customerX_hash;
 
  vector v;
  X x(32);
 
  size_t h = string_hash("hash me");
  cout < 
  h = double_hash(3.1415927);
  cout < 
  h = vector_hash(v);
  cout < 
  v.push_back(10);
  h = vector_hash(v);
  cout <                   
  h = customerX_hash(x);
  cout <                                                 
  system("PAUSE");
  return 0;
}

怎么样,简单吧?标准的,扩展自定义的类型,都有了。
继续努力学习中。。。
推荐阅读
author-avatar
Novice
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有