
C++语法
文章平均质量分 79
yehexianyun
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
点在多边形内的判断
geos-3.0.3中的代码,扫描线法: /*public static*/boolCGAlgorithms::isPointInRing(const Coordinate& p, const Coordinate::ConstVect& ring){ double xInt; // x intersection of segment with ray int转载 2009-02-23 10:20:00 · 1561 阅读 · 0 评论 -
一些boost常用的泛型技巧
This is an incomplete survey of some of the generic programming techniques used in the boost libraries.Table of ContentsIntroduction The Anatomy of a Concept Traits Tag Dispatching Adapt转载 2009-03-12 15:56:00 · 931 阅读 · 0 评论 -
boost测试——string_algo(zz)
http://blog.chinaunix.net/u/8780/showart_373773.html原创 2009-04-03 21:43:00 · 505 阅读 · 0 评论 -
FixedString
#ifndef _FIXEDSTRING_H_#define _FIXEDSTRING_H_#include #include #include #include #include #pragma warning (disable: 4996)//固定大小的字符串class FixedString{public: size_t siz原创 2009-08-12 17:54:00 · 1495 阅读 · 0 评论