C++
文章平均质量分 79
chi饭用筷子
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
unordered_map hash函数2种写法
```cpp //#include "stdafx.h" #include <iostream> #include <cstdio> #include <typeinfo> #include <unordered_map> #include <iterator> #include <functional> #include ...原创 2019-11-24 10:39:42 · 752 阅读 · 0 评论 -
C++ 11 生产者消费者模式
单生产者单消费者模式,假设生产者每次产量等于与消费者每次消耗量 C++ 11 使用unique_lock 和 condition_variable 实现 //#include "stdafx.h" #include <iostream> #include <string> #include <vector> #include <list> #incl...原创 2019-10-20 18:14:18 · 629 阅读 · 0 评论
分享