Java 外部排序

发布于 2024-09-19 12:42:55 字数 34 浏览 4 评论 0原文

Java 没有实现内置的外部排序算法有什么具体原因吗?

Is there a specific reason why Java does not have an in-built external sort algorithm implemented ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最终幸福 2024-09-26 12:42:56

我认为没有任何现代语言具有内置的外部排序。通常,它不属于编程语言的范围。另外,请考虑具有有限(或没有)外部存储器(仅 RAM)的嵌入式(或专用)设备。诸如外部排序之类的语言功能将毫无意义。

I don't think any modern language has external sorting built-in. Usually, it's just not part of the scope of a programming language. Also, think of embedded (or specialized) devices that have limited (or no) external memory, only RAM. Language features such as external sorting would be purposeless.

等待我真够勒 2024-09-26 12:42:55

因为JDK只包含最常用的组件。

任何外部框架内容都是一样的。为什么不直接内置呢?

原因很简单,因为它不需要内置。因为它不是由同一个人开发的。

但您仍然可以使用外部框架或库来帮助您实现这一点。


资源:

Because the JDK contains only the mostly used components.

It is the same thing with any external framework content. Why isn't it directly built-in ?

Simply because it doesn't need to be built-in. And because it's not developed by the same people.

But still you can use an external framework, or a library which will help you with that.


Resources :

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文