gpt4 book ai didi

powershell - PowerShell 中哈希表的并集和交集

转载 作者:行者123 更新时间:2023-12-04 14:25:49 25 4
gpt4 key购买 nike

Union and Intersection in PowerShell?描述了用于数组集合操作的酷单行。

我想用哈希表来做这件事,并有一个使用字典键集的解决方案。为了扩展到值,我使用 for 循环遍历键的交集并将值复制到新的结果哈希表。这看起来不干净。

进一步的研究表明 GetEnumerator 的解决方案也不是干净的恕我直言。

如何用简洁漂亮的单行代码替换臃肿的 for 循环或枚举器?

源代码如下:

http://paste.ubuntu.com/13362425/

# import csv
$a = Import-Csv -Path A.csv -Delimiter ";" -Header "Keys","Values"
$b = Import-Csv -Path B.csv -Delimiter ";" -Header "Keys","Values"

# Make nice hashtables for further use
$AData = @{}
foreach($r in $a)
{ $AData[$r.Keys] = $r.Values }
$BData = @{}
foreach($r in $b)
{ $BData[$r.Keys] = $r.Values }

# Set difference to find missing entries
$MissingA = $AData.Keys | ?{-not ($BData.Keys -contains $_)}

# I don't know how to do set-operations on hashtables yet. So use keysets and copy data (lame!)
$MissingAData = @{}
foreach($k in $MissingA)
{
$MissingAData[$k] = $AData[$k]
}

# Intersection
$Common = $AData.Keys | ?{$BData.Keys -contains $_}

最佳答案

您可以使用与列表相同的技术,但使用哈希表键,如您在 OP 中所指示的那样。

对于联合和交集,您还有一个额外的问题。在两个哈希表之间的共同键中,您将保留哪个值?假设您将始终将值保留在第一个哈希表中。然后:

# need clone to prevent .NET exception of changing hash while iterating through it
$h1clone = $hash1.clone()

# intersection
$h1clone.keys | ? {$_ -notin $hash2.keys} | % {$hash1.remove($_)}

# difference: $hash1 - $hash2
$h1clone.keys | ? {$_ -in $hash2.keys} | % {$hash1.remove($_)}

# union. Clone not needed because not iterating $hash1
$hash2.keys | ? {$_ -notin $hash1.keys} | % {$hash1[$_] = $hash2[$_]}

或者你可以这样做以避免克隆并创建一个新的哈希表
# intersection
$newHash = @{}; $hash1.keys | ? {$_ -in $hash2.keys} | % {$newHash[$_] = $hash1[$_]}

# difference: $hash1 - $hash2
$newHash = @{}; $hash1.keys | ? {$_ -notin $hash2.keys} | % {$newHash[$_] = $hash1[$_]}

关于powershell - PowerShell 中哈希表的并集和交集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33823151/

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