究竟为什么会有人使用的一系列而不是unordered

编程入门 行业动态 更新时间:2024-10-09 22:19:00
本文介绍了究竟为什么会有人使用的一系列而不是unordered_set?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

请,原谅我的无知这个主题:)

Please, excuse my ignorance about this subject :)

的C ++ 0x推出 unordered_set 这是提升和其他许多地方使用。我的理解是, unordered_set 与哈希表O(1)查询的复杂性。在另一方面,设置不过是树的log(n)查询的复杂性。 究竟为什么会有人使用设置,而不是 unordered_set 的?即是否有必要对设置了吗?

C++0x is introducing unordered_set which is available in boost and many other places. What I understand is that unordered_set is hash table with O(1) lookup complexity. On the other hand, set is nothing but a tree with log(n) lookup complexity. Why on earth would anyone use set instead of unordered_set? i.e is there a need for set anymore?

推荐答案

在,人谁愿意来遍历集合的项目,顺序问题。

When, for someone who wants to iterate over the items of the set, the order matters.

更多推荐

究竟为什么会有人使用的一系列而不是unordered

本文发布于:2023-11-29 01:49:13,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1644811.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:而不是   系列   unordered

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!