自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

滴水穿石!

Linux C/C++

  • 博客(9)
  • 资源 (4)
  • 收藏
  • 关注

原创 storm-0.9.5单机配置

storm 单机配置

2015-06-29 15:05:17 1292

原创 LeetCode --- Plus One

Plus OneGiven a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at the head of the list.My Submitted Codeclas

2015-06-07 21:45:22 474

原创 LeetCode --- Climbing Stairs

Climbing Stairs You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?My Submitted

2015-06-07 21:42:27 505

原创 LeetCode --- Add Binary

Add Binary Given two binary strings, return their sum (also a binary string). For example, a = “11” b = “1” Return “100”.My Submitted Codeclass Solution {public: string addBinary(

2015-06-07 21:38:32 337

原创 LeetCode --- Maximum Subarray

Maximum Subarray Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [−2,1,−3,4,−1,2,1,−5,4], the contiguous

2015-06-07 21:26:57 419

原创 LeetCode --- Combination Sum

Combination Sum Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeated number may be chosen from

2015-06-07 21:18:23 481

原创 SSDB --- zset实现

zsetzset是一种很有用的数据结构,你可能听说过set,但什么是zset呢?zset就是sorted_set(排序集),STL里有set,底层是用红黑树实现的,并没有提供sorted_set的实现,要实现一个zset并不难,比如SSDB的作者就用map和set实现了一个简单的zset。代码在ssdb/src/util/sorted_set.h sorted_set.cpp中。 sorted_s

2015-06-05 14:02:24 2589

原创 SSDB 和redis benchmark对比

SSDB redis benchmark

2015-06-03 09:46:27 898

原创 SSDB --- queue实现

SSDB介绍SSDB是一款nosql数据库,使用leveldb作为存储引擎,支持众多的数据结构,如 queue、zset和hash,宣称可用来替代redis,看来性能不可小觑。其作者是位国人,曾在360游戏部门任职过。SSDB被很多知名公司使用,代码质量不错。 http://ssdb.io/zh_cn/,代码托管在github。queue的实现leveldb本身是k/v数据库,如何在单纯的k/v上

2015-06-01 22:26:33 2764

cmakepractice

cmakepractice learn cmake  Cmake实践

2015-06-05

Boost graph library User guide.pdf

boost graph library 是boost里的一个图论库,这个graph库性能强大,但是相关的资料很少,这个手册讲的也很基础,不过对了解boost graph足够了,想深入研究boost graph ,可以看源码.

2015-05-29

MFC俄罗斯方块工程

功能齐全 带音效 虽然没有严格的类划分,但对于新手来说非常适合学习之用,程序还有待改进。

2012-05-05

最合适的ucos ii源代码

包含了Ix86L source 文件夹 适合学习

2011-11-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除