上一页 1 2 3 4 5 6 7 8 ··· 30 下一页
摘要: std::mutex m; std::condition_variable cond; int flag = 0; constexpr int kLoopTimes = 10; void foo(int id){ for (int i = 0; i != kLoopTimes; ++i){ std: 阅读全文
posted @ 2015-11-19 19:40 wu_overflow 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 安装方法十分简单,打开 mysql 后输入 \. .../.../employees.sql; 就可以。吗?然后就遇到问题了,第一个是这样,我输入上面的代码之后,给我的是这个:Access denied for user为啥呢? 因为没有以 root 的身份登录,只需要这样登录就可以; mysql ... 阅读全文
posted @ 2015-11-13 16:27 wu_overflow 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-11-12 19:23 wu_overflow 阅读(572) 评论(0) 推荐(0) 编辑
摘要: templateIterator parallelFind(Iterator first, Iterator last, MatchType match){ struct FindElement { void operator()(Iterator begin, Itera... 阅读全文
posted @ 2015-11-04 14:20 wu_overflow 阅读(161) 评论(0) 推荐(0) 编辑
摘要: const std::string getCurrentSystemTime(){ auto tt = std::chrono::system_clock::to_time_t (std::chrono::system_clock::now()); struct tm* ptm = local... 阅读全文
posted @ 2015-11-03 17:37 wu_overflow 阅读(225) 评论(0) 推荐(0) 编辑
摘要: class ThreadsJoiner{ std::vector& threads;public: ThreadsJoiner(std::vector& threads_): threads(threads_) {} ~ThreadsJoiner() ... 阅读全文
posted @ 2015-11-03 17:24 wu_overflow 阅读(373) 评论(0) 推荐(0) 编辑
摘要: int foo(int n){ if (n < 1){ return 0; } int result = 0; for(int i = 1, factor = 1; i <= n; (factor += (pow(10.0, i))), ++i){ ... 阅读全文
posted @ 2015-10-29 18:26 wu_overflow 阅读(1767) 评论(0) 推荐(0) 编辑
摘要: templateT parallelAccumulate(Iterator first, Iterator last, T init){ size_t const length = std::distance(first, last); if (length == 0){ ... 阅读全文
posted @ 2015-10-24 18:44 wu_overflow 阅读(210) 评论(0) 推荐(0) 编辑
摘要: templatestruct AccumulateBlock{ T operator()(Iterator first, Iterator last) { return std::accumulate(first, last, T()); }};class Threa... 阅读全文
posted @ 2015-10-24 17:57 wu_overflow 阅读(151) 评论(0) 推荐(0) 编辑
摘要: while(static_cast(std::cin.get()) != '\n') { //若读取的字符串不是换行符,则将其放回流内。 std::cin.unget(); cin >> input; // ... } 阅读全文
posted @ 2015-10-20 20:15 wu_overflow 阅读(494) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 30 下一页