# CPP_Exercises **Repository Path**: arrti/CPP_Exercises ## Basic Information - **Project Name**: CPP_Exercises - **Description**: C++编程练习 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2016-09-23 - **Last Updated**: 2022-06-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #CPP_Exercises ##BankQueue 实现了事件驱动型银行排队模拟,可以参考博客《[C++ 事件驱动型银行排队模拟](http://www.cnblogs.com/xmwd/p/CPP_event_driven_bank_queue_simulation.html)》 ##LockFreeStealingDeque 参照《C++并发实战》实现了lock free deque,本地线程从deque的尾部tail取任务(try_pop),其他线程可以从deque的头部head“窃取”任务(try_steal),任务从tail尾部加入deque中(push)。