
cplusplus
pozen
C++ suanfa
展开
-
简单的BitVector
class BitVector{public: explicit BitVector(int size) { __size = size; __memlen = (size>>3) + 1; __table = new unsi原创 2010-11-09 16:37:00 · 2553 阅读 · 0 评论 -
一种(文件头)注释风格
/** *pozen@yl:~>file 'xxx.h' *pozen@yl:~>brief 'xxxxxxxx' *pozen@yl:~>date '2012-1-4' *pozen@yl:~>...**/不管是代码风格,还是注释风格,大家都喜欢追求个性化。上面描述的这种风格是在我的一个个人项目中用到的,如有雷同 纯属意外。pozen@yl:~> 里面pozen是原创 2012-01-04 16:50:46 · 2678 阅读 · 0 评论 -
经典的makefile教材(bakup reason)
陈皓 概述 —— 什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefile还是要懂。这就好像现在有这么多的HTML的编辑器,但如果你想成为一个专业人士,你还是要了解HTML的标识的含义。特别在Unix下的软件编译,你就不能不自己写makefile了,转载 2012-03-27 17:10:13 · 4274 阅读 · 0 评论 -
c++ code for Discriminatively Trained Deformable Part Models
http://www.baiyun.ws/?p=141原创 2013-08-29 22:00:27 · 4644 阅读 · 11 评论