I've become very stuck trying to complete a Cartesian Product algorithm in Powershell. Using pieces of other formulas found here on stackoverflow this is what I have come up with:
clear
Function New-GenericDictionary([type] $keyType, [type]$valueType)
{
$base = [System.Collections.Generic.Dictionary``2]
$ct = $base.MakeGenericType(($keyType, $valueType))
New-Object $ct
}
$sets = New-GenericDictionary int string
$sets[0] = "1"
$sets[1] = "0,1"
$sets[2] = "0,1"
$iterations = 1
$stringCombo = ""
foreach($key in $sets.Keys) {
$pieces = $sets[$key].Split(",")
$iterations = $iterations * $pieces.Length
}
for ($i = 0; $i -lt $iterations; $i++) {
$stringCombo = ""
foreach($key in $sets.Keys) {
$pieces = $sets[$key].Split(",")
$val = $pieces.Length
$get = $i%$val
$stringCombo = $stringCombo + " " + $pieces[$get]
}
Write-Host $stringCombo.Trim()
}
#output hoped for:
#1 0 0
#1 0 1
#1 1 0
#1 1 1
#output is:
#1 0 0
#1 1 1
#1 0 0
#1 1 1
As seen in the comments at the bottom of the code snippet the output is not quite producing the desired results. The iterations count is returning the correct value but the combinations aren't completing correctly.
In this snippet $sets[x] is fixed but in the actual script $sets dictionary items are created as part of a loop and can contain 1 to many items per iteration.
Can somebody offer a second set of eyes to show me what I've missed?
Thanks