- 博客(5)
- 资源 (21)
- 收藏
- 关注
原创 源码分享:c++配置类
网上一个热心的大牛分享了一个c++配置类,如下:Config.h //Config.h #pragma once #include #include #include #include
2011-09-23 02:14:16
4730
原创 c++开源日志库log4cplus
1. 简介log4cplus是C++编写的开源的日志系统,The purpose of this project is to port the excellentLog for Java (log4j)logging library to C++。log4cplus具
2011-09-23 01:28:04
8532
原创 我们需要code review
1. Code Review目的 Code Review是一种通过复查代码提高代码质量的过程,在XP方法中占有极为重要的地位,通过code review,主要达到以下目的: 1). 提高代码质量 2).及早发现缺陷,降低
2011-09-19 14:39:20
3712
原创 Getting Started with Boost
1. Boost是什么 Boost库是一个可移植、提供源代码的C++库,其覆盖了广泛的领域,从数学库到智能指针,从模板元编程库到预处理器库,从线程到lambda表达式等等。 Ten Boost libraries are already included in the C++ Standards Committee's Library Technical Report (T
2011-09-15 01:00:13
3091
原创 算法:求去重后元素个数
给出一个整型数组,计算去重后元素个数eg:int a[] = {1,2,3,1,2,3,3}; 去重后元素个数为3方法1:暴力check是否重复,复杂度O(n^2)对于a[m],顺序比较a[m-1],a[m-2].....a[0],全部不重复,去重
2011-09-08 16:42:34
4125
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人