搜索资源列表
Mutex_Critical
- 这个例子利用多线程使用不同的排序算法对数据进行排序,每一个线程使用不同的算法。主线程里使用快速排序QuickSort,其他四个算法分别建立四个子线程,在子线程中进行排序。因为每一个线程都要调用函数PrintResult把结果输出到显示器上,所以不同的线程就会争夺着向显示器输出,这样,不同线程的输出就会混合在一起,所以呢必须让线程一个接着一个输出。也就是必须对PrintResult进行互斥控 制。要进行互斥控制,则必须用到Event、Mutex、CrititicalSection、Semaph
Threagkktrdest
- 一个介绍如何在Visual C中调用多线程代码,本例中也同时实现了常用的排序算法。完整源代码,已通过测试。-How a call in Visual C multi-threaded code, in this case also commonly used to achieve a sort algorithm. Full source code, has been tested.
pphwrl
- 合并排序的算法实现,对于学习算法设计的初学者很有帮助(Merge sort algorithm, is very helpful for beginners learning algorithm design)