gpt4 book ai didi

powershell - 在 PowerShell 中设置(数据结构)

转载 作者:行者123 更新时间:2023-12-03 11:48:47 25 4
gpt4 key购买 nike

有没有办法定义 Set data-structure 电源 ?

In computer science, a set is an abstract data type that can store certain values, without any particular order, and no repeated values. It is a computer implementation of the mathematical concept of a finite set. Unlike most other collection types, rather than retrieving a specific element from a set, one typically tests a value for membership in a set.



我需要使用一个数据结构作为 keystore :
  • 保证不重复;
  • 最小化计算工作量以检索和删除元素。
  • 最佳答案

    您可以使用 .NET HashSet System.Collections.Generic 下找到的类:

    $set = New-Object System.Collections.Generic.HashSet[int]

    该系列保证独特的元素和 Add , Remove , 和 Contains 平均而言,所有方法都以 O(1) 复杂度运行。

    关于powershell - 在 PowerShell 中设置(数据结构),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29126555/

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