检查内容唯一性的容器

发布于 2024-07-25 21:30:34 字数 47 浏览 6 评论 0原文

任何语言中是否有任何数据类型/容器在插入项目之前检查内容的唯一性而不是值或索引?

Is there any datatype /container in any language which checks for the uniqueness of the content rather than the value or index before inserting the item?

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

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

发布评论

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

评论(4

原谅我要高飞 2024-08-01 21:30:34

是的,它被称为集合。 大多数语言都以某种形式实现它们。

Yes, it's called a set. Most languages implement them in some form.

愿得七秒忆 2024-08-01 21:30:34

当然,我想到的就是 Cocoa 的 NSSet 类。 C++ STL 也有一个集合类。

当然,除了简单的指针或引用比较之外,您还需要某种方法来定义唯一的对象。 例如,在 Cocoa 中,如果两个对象以 YES 响应 isEqual: 并且具有相同的哈希码,则就 NSSet 而言,它们被视为相同。

Sure, one that comes to mind is Cocoa's NSSet class. The C++ STL also has a set class.

Of course, you need some way to define a unique object beyond simple pointer or reference comparison. For instance, in Cocoa, two objects are considered the same for the purpose of NSSet if they respond to isEqual: with YES and have the same hash code.

芸娘子的小脾气 2024-08-01 21:30:34

问题在于该值可以是任何值,因此这是非常开放的并且并不总是实用的。

The problem with that is that the value can be ANYTHING so that's very open ended and not always pratical.

丶视觉 2024-08-01 21:30:34

具有 UNIQUE 字段的 SQL。 在 Python 中设置。 文件系统上的文件名。 取决于你如何定义“内容”。

SQL with a UNIQUE field. sets in Python. Filenames on Filesystems. Depends on how you define "content".

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