TCL中有类似std::set的数据结构吗?

发布于 2024-12-25 08:23:15 字数 312 浏览 1 评论 0原文

TCL 有一个名为 dict 它维护一个键值对的集合。

是否有另一种数据结构维护键的集合(没有值)?

如果没有,那么也许有人已经在 dict< 上编写了一个简单的适配器/code>带有空值?

TCL has a data structure called dict which maintains a collection of key-value pairs.

Is there another data structure which maintains a collection of keys (with no values)?

If no, then maybe someone already wrote a simple adapter on dict with empty values?

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

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

发布评论

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

评论(3

悟红尘 2025-01-01 08:23:15

您可以使用 tcllib 包 ::struct::set

http://tcllib.sourceforge.net/doc/struct_set.html

You could use the tcllib package ::struct::set.

http://tcllib.sourceforge.net/doc/struct_set.html

软糯酥胸 2025-01-01 08:23:15

只需使用一个列表。

set example [list "key1" "key2" "key3"]
if {[lsearch -exact $example "key3"] != -1} {
    puts "found your key!"
} else {
    puts "your key is not in the list"
}

也许您应该问一个更具体的问题以获得更准确的答案。
dict 的替代方案是 array,它不保留键的顺序。

Just use a single list.

set example [list "key1" "key2" "key3"]
if {[lsearch -exact $example "key3"] != -1} {
    puts "found your key!"
} else {
    puts "your key is not in the list"
}

Maybe you should ask a more specific question to get a more accurate answer.
An alternative for dict is array which doesn't preserve the order of keys.

千纸鹤 2025-01-01 08:23:15

另一种方法是将所有内容累积到 $bucket 中。

然后做:

set uniqueItems [lsort -unique $bucket]

Another approach would be to accumulate everything into say, $bucket.

Then do:

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