python shuffle算法性能

发布于 2025-01-07 07:32:44 字数 231 浏览 0 评论 0原文

我想知道 shuffle 函数的时间复杂度< /a> 在 random Python 库/模块中。是 O(n) 还是小于它?

有没有一个网站可以显示属于 Python 库的函数的时间复杂度?

I was wondering about the time complexity of the shuffle function in the random Python library/module. Is it O(n) or is it less than that?

Is there a website that shows the time complexities of functions that belong to Python libraries?

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

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

发布评论

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

评论(1

帥小哥 2025-01-14 07:32:44

您无法在小于 O(n) 的时间内以完全随机的方式对列表进行洗牌。

random.shuffle() 的实现使用Fisher-Yates shuffle 算法,很容易看出其时间复杂度为 O(n)。

You cannot shuffle a list in a completely random fashion in less than O(n).

The implementation of random.shuffle() uses the Fisher-Yates shuffle algorithm, which is easily seen to be O(n).

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