如何在文本文件中找到最长的 N 行并将其打印到标准输出?

发布于 2024-11-06 12:38:30 字数 56 浏览 7 评论 0原文

第一行包含数字“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 技术交流群。

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

发布评论

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

评论(1

Saygoodbye 2024-11-13 12:38:30
  1. 您可以使用最小堆并在 O(n*(log(N))) 内完成:

     堆 = new Min-Heap(N)
       foreach 文本行:
            如果长度(线)>堆.min():
            堆.pop()
            堆.插入(行)
       foreach 堆中的行:
            打印到标准输出:行。
    
  2. 它也可以使用 Select(N) 在 O(n) 中完成(选择第 N 个数字),然后围绕第 N 个数字进行分区(将所有大小大于或等于第 N 个数字的元素排列到其一侧)。

     i = 选择(行,N)
       分区(行,i)
       对于我的大小(行):
             打印到标准输出:lines[i]
    
  1. You can use a minimum-heap and do it in O(n*(log(N))):

       heap = new Min-Heap(N)
       foreach line in text:
            if length(line) > heap.min():
            heap.pop()
            heap.insert(line)
       foreach line in heap:
            print to stdout: line.
    
  2. 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).

       i = Select(lines, N)
       partition(lines, i)
       for i to size(lines):
             print to stdout: lines[i]
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文