实现并行归并排序:25秒对比1.5秒
原文英文,约800词,阅读约需3分钟。发表于: 。🥵 When i was in my college days, one constant thing that I didn't get why the heck are we learning CS subjects like operating systems, computer networks and data structures and algorithms. 🔥 Yes,...
作者回忆大学时不理解计算机科学课程的意义,直到通过深入研究和解决问题发现其价值。他最近实现了一个多线程归并排序算法,比普通归并排序更快。多线程版本利用多核处理器的并行能力,提高了效率,并且无需担心同步问题,因为左右部分的修改是独立的。