mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-13 06:27:16 +02:00
Add measure-CountingSort.ps1, measure-InsertionSort.ps1,
measure-MergeSort.ps1, and measure-SelectionSort.ps1
This commit is contained in:
50
Scripts/measure-MergeSort.ps1
Normal file
50
Scripts/measure-MergeSort.ps1
Normal file
@ -0,0 +1,50 @@
|
||||
param([int]$numIntegers = 1000)
|
||||
|
||||
class MergeSort {
|
||||
|
||||
static Merge($theArray, $tempArray, $leftPos, $rightPos, $rightEnd) {
|
||||
$leftEnd = $rightPos - 1
|
||||
$tmpPos = $leftPos
|
||||
$numElements = $rightEnd - $leftPos + 1
|
||||
|
||||
while (($leftPos -le $leftEnd) -and ($rightPos -le $rightEnd)) {
|
||||
if ($theArray[$leftPos].CompareTo($theArray[$rightPos]) -le 0) {
|
||||
$tempArray[$tmpPos++] = $theArray[$leftPos++]
|
||||
}
|
||||
else {
|
||||
$tempArray[$tmpPos++] = $theArray[$rightPos++]
|
||||
}
|
||||
}
|
||||
|
||||
while ($leftPos -le $leftEnd) { $tempArray[$tmpPos++] = $theArray[$leftPos++] }
|
||||
while ($rightPos -le $rightEnd) { $tempArray[$tmpPos++] = $theArray[$rightPos++] }
|
||||
|
||||
for ($i = 0; $i -lt $numElements; $i++, $rightEnd--) {
|
||||
$theArray[$rightEnd] = $tempArray[$rightEnd]
|
||||
}
|
||||
}
|
||||
|
||||
static Sort($theArray) {
|
||||
$tempArray = New-Object Object[] $theArray.Count
|
||||
[MergeSort]::Sort($theArray, $tempArray, 0, ($theArray.Count - 1))
|
||||
}
|
||||
|
||||
static Sort($theArray, $tempArray, $left, $right) {
|
||||
if ($left -lt $right) {
|
||||
|
||||
$center = [Math]::Floor(($left + $right) / 2)
|
||||
|
||||
[MergeSort]::Sort($theArray, $tempArray, $left, $center)
|
||||
[MergeSort]::Sort($theArray, $tempArray, ($center + 1), $right)
|
||||
|
||||
[MergeSort]::Merge($theArray, $tempArray, $left, ($center + 1), $right)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$list = (1..$numIntegers | foreach{Get-Random -minimum 1 -maximum $numIntegers})
|
||||
$stopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||
[MergeSort]::Sort($list)
|
||||
[float]$elapsed = $stopWatch.Elapsed.TotalSeconds
|
||||
"🕒 MergeSort of $numIntegers integers took $elapsed sec"
|
||||
exit 0 # success
|
Reference in New Issue
Block a user