如何在文本文件中找到最长的 N 行并将其打印到标准输出?
第一行包含数字“N”的值,后跟多行。 我可以按照n^2算法的顺序解决它。有人可以建议一个更好的吗?
The first line contains the value of the number 'N' followed by multiple lines.
I could solve it in order of n^2 algorithm. Can someone suggest a better one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用最小堆并在 O(n*(log(N))) 内完成:
它也可以使用 Select(N) 在 O(n) 中完成(选择第 N 个数字),然后围绕第 N 个数字进行分区(将所有大小大于或等于第 N 个数字的元素排列到其一侧)。
You can use a minimum-heap and do it in O(n*(log(N))):
it could also be done in O(n) using Select(N) (which selects the Nth number) followed by partition around the Nth number (which arranges all the with size larger or equal to the Nth number to one side of it).