gpt4 book ai didi

algorithm - 另一种算法求职面试

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:29:17 26 4
gpt4 key购买 nike

问题来了:

Suppose you have 100 thousand integers which ranges from 1 to 1 million. Please sort out the integers. The time complexity should be O(n).

任何分享他或她的想法的人都会受到赞赏。

最佳答案

听起来像是一种简单的计数排序。

  1. 为大小为 100 万的数组 a 预留内存
  2. 将所有数组值初始化为0
  3. 遍历整数。对于每个整数,我将 a[i] 加一。
  4. 通过遍历数组并打印每个数字 i a[i] 次来输出排序序列。

空间是恒定的。运行时间为 O(n)。

关于algorithm - 另一种算法求职面试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3931464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com