如何在 2MB RAM 中对 100 万个 32 位整数进行排序?
请提供您选择的语言的代码示例。
更新: 对外部存储没有设置限制。
示例:通过网络接收/发送整数。 本地磁盘有足够的空间用于保存中间结果。
Please, provide code examples in a language of your choice.
Update:
No constraints set on external storage.
Example: Integers are received/sent via network. There is a sufficient space on local disk for intermediate results.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(10)
将问题分成足够小的部分以适合可用内存,然后使用合并排序将它们组合起来。
Split the problem into pieces small enough to fit into available memory, then use merge sort to combine them.
对 2MB 中的一百万个 32 位整数进行排序Guido van Rossum 使用 Python 构建 RAM
Sorting a million 32-bit integers in 2MB of RAM using Python by Guido van Rossum
100 万个 32 位整数 = 4 MB 内存。
您应该使用某种使用外部存储的算法对它们进行排序。 例如,合并排序。
1 million 32-bit integers = 4 MB of memory.
You should sort them using some algorithm that uses external storage. Mergesort, for example.
您需要提供更多信息。 有什么额外的存储空间可用? 你应该将结果存储在哪里?
否则,最普遍的答案是:
1. 将前半部分数据加载到内存(2MB),用任意方法排序,输出到文件。
2.将后半部分数据加载到内存中(2MB),用任意方法排序,保留在内存中。
3. 使用合并算法将已排序的两半进行合并,并将完整的已排序数据集输出到文件中。
You need to provide more information. What extra storage is available? Where are you supposed to store the result?
Otherwise, the most general answer:
1. load the fist half of data into memory (2MB), sort it by any method, output it to file.
2. load the second half of data into memory (2MB), sort it by any method, keep it in memory.
3. use merge algorithm to merge the two sorted halves and output the complete sorted data set to a file.
这篇有关外部排序的维基百科文章提供了一些有用的信息。
This wikipedia article on External Sorting have some useful information.
双锦标赛排序与多阶段合并
Dual tournament sort with polyphased merge
这是一个有效且有趣的解决方案。
将一半的数字加载到内存中。 对它们进行堆排序并将输出写入文件。 对另一半重复上述步骤。 使用外部排序(基本上是考虑文件 I/O 的合并排序)来合并两个文件。
在旁边:
在面对缓慢的外部存储时,使堆排序更快:
在所有整数进入内存之前开始构建堆。
在堆排序仍在提取元素时开始将整数放回输出文件
在
Here's a valid and fun solution.
Load half the numbers into memory. Heap sort them in place and write the output to a file. Repeat for the other half. Use external sort (basically a merge sort that takes file i/o into account) to merge the two files.
Aside:
Make heap sort faster in the face of slow external storage:
Start constructing the heap before all the integers are in memory.
Start putting the integers back into the output file while heap sort is still extracting elements
正如上面的人提到的 32 位 4 MB 的 int 类型。
使用 C++ 中的 int、short 和 char 类型将尽可能多的“数字”放入尽可能小的空间中。 你可以通过进行多种类型的转换来将东西塞满各处,从而变得狡猾(但有奇怪的脏代码)。
它就在我座位的边缘。
任何小于 2^8(0 - 255) 的内容都会存储为 char(1 字节数据类型)
任何小于 2^16(256 - 65535) 且 > 的内容 都会存储为 char(1 字节数据类型) 2^8 被存储为短整型(2 字节数据类型),
其余值将被放入 int 中。 (4 字节数据类型)
您需要指定 char 部分开始和结束的位置、short 部分开始和结束的位置以及 int 部分开始和结束的位置。
As people above mention type int of 32bit 4 MB.
To fit as much "Number" as possible into as little of space as possible using the types int, short and char in C++. You could be slick(but have odd dirty code) by doing several types of casting to stuff things everywhere.
Here it is off the edge of my seat.
anything that is less than 2^8(0 - 255) gets stored as a char (1 byte data type)
anything that is less than 2^16(256 - 65535) and > 2^8 gets stored as a short ( 2 byte data type)
The rest of the values would be put into int. ( 4 byte data type)
You would want to specify where the char section starts and ends, where the short section starts and ends, and where the int section starts and ends.
没有示例,但是桶排序复杂度相对较低,并且很容易实现
No example, but Bucket Sort has relatively low complexity and is easy enough to implement