Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C++ 中,哪个更快?
在我的情况下,数组的大小最大为 100。
使用 100 个元素的大小,这个过程是如此之快,以至于您甚至不会发现任何差异。
所以无论你想要哪种方式。
但是,如果您正在查看数组中的大量项目,我会说第二个选项更快。因为基数排序使用二级缓冲区来存储部分排序结果。这增加了该算法所需的内存。在处理大量元素时,它会产生很大的不同。