自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (2)
  • 收藏
  • 关注

原创 一个高频交易系统的设计与实现

 关于thunder-trader交易系统的文章已经移到我的个人博客~Github地址:https://github.com/solopointer/thunder-trader胡逸峰   《一个高频交易系统的实现》欢迎访问我的技术博客 http://www.huyifeng.net/ 。欢迎大家一起来交流。本系列文章主要介绍一个工业级的高频交易系统的构成,以及每一部分需要优化...

2018-09-24 12:52:59 8058 2

原创 经典的线程池

#include #include #include #include #include #include #include #include #include using namespace std;class CThreadPool{ bool m_boolIsWorking = true; std::mutex m_mtxWorkQueueMtx; std

2016-06-15 23:17:44 370

原创 leetcode算法训练#2 Add Two Numbers

题目大意:You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return i

2016-05-11 22:23:43 269

原创 leetcode算法训练#1 Two Sum

题目的大概意思是在一个无序数组中找到两个数字的下标,使得这两个数字的和刚好为指定数。最简单的解是暴力搜索法,代码如下:class Solution {public:vector twoSum(vector& nums, int target) {for (unsigned int i = 0;i for (unsigned int t = i+1;t {if (nu

2016-05-09 22:25:08 300

原创 条件变量思路整理

mark

2016-05-08 17:40:01 389

UXFS 最简答的文件系统

《UnixFilesystems:Evolution,Design,andImplementation》一书中UXFS linux2.6的移植版本,操作系统课程作业

2013-07-12

winpcap发送数据包

利用winpcap发送数据包.比较实用

2012-12-09

空空如也

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

TA关注的人

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