Big-O complexity of java.util.stream.Streamlt;Tgt;.sorted()(java.util.stream.Streamlt;Tgt;.sorted() 的大 O 复杂度)
问题描述
有谁知道java.util.stream.Stream<T>.sorted()
的时间复杂度是多少?
Does anyone know what the time complexity of java.util.stream.Stream<T>.sorted()
is?
推荐答案
嗯,sorted()
本身就是 O(1),因为它是一个不消耗流的中间操作,但只是简单地向管道添加一个操作.
Well, sorted()
in itself is O(1), since it's an intermediate operation that doesn't consume the stream, but simply adds an operation to the pipeline.
一旦终端操作消耗了流,就会发生排序
Once the stream is consumed by a terminal operation, the sort happens and either
- 它什么都不做 (O(1)),因为流知道元素已经排序(例如,因为它们来自 SortedSet)
- 或者流不是并行的,它委托给
Arrays.sort()
(O(n log n)) - 或者流是并行的,它委托给
Arrays.parallelSort()
(O(n log n))
- it doesn't do anything (O(1)) because the stream knows that the elements are already sorted (because they come from a SortedSet, for example)
- or the stream is not parallel, and it delegates to
Arrays.sort()
(O(n log n)) - or the stream is parallel, and it delegates to
Arrays.parallelSort()
(O(n log n))
这篇关于java.util.stream.Stream<T>.sorted() 的大 O 复杂度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:java.util.stream.Stream<T>.sorted() 的大 O 复杂度
基础教程推荐
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 降序排序:Java Map 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01