PowerShell/Scripts/measure-BubbleSort.ps1

46 lines
1.5 KiB
PowerShell
Raw Normal View History

2023-08-21 20:00:49 +02:00
<#
.SYNOPSIS
2023-08-21 21:23:10 +02:00
Measures the speed of BubbleSort
2023-08-21 20:00:49 +02:00
.DESCRIPTION
2023-08-21 21:23:10 +02:00
This PowerShell script measures the speed of the BubbleSort algorithm.
2023-08-21 20:00:49 +02:00
BubbleSort is a simple sorting algorithm that repeatedly steps through the list,
compares adjacent elements and swaps them if they are in the wrong order. The pass
through the list is repeated until the list is sorted. The algorithm, which is a
comparison sort, is named for the way smaller or larger elements "bubble" to the top of the list.
.PARAMETER numIntegers
2023-08-21 21:23:10 +02:00
Specifies the number of integers to sort
2023-08-21 20:00:49 +02:00
.EXAMPLE
2023-08-21 21:23:10 +02:00
PS> ./measure-BubbleSort.ps1
2023-09-13 07:57:23 +02:00
🧭 0.729 sec to sort 1000 integers by BubbleSort
2023-08-21 20:00:49 +02:00
.LINK
2023-08-21 21:23:10 +02:00
https://github.com/fleschutz/PowerShell
2023-08-21 20:00:49 +02:00
.NOTES
2023-08-21 21:23:10 +02:00
Author: Markus Fleschutz | License: CC0
2023-08-21 20:00:49 +02:00
#>
param([int]$numIntegers = 1000)
class BubbleSort {
static Sort($targetList) {
$n = $targetList.Count
for ($i = 0; $i -lt $n; $i+=1) {
for ($j = 0; $j -lt $n-1; $j+=1) {
if($targetList[$j] -gt $targetList[$j+1]) {
$temp = $targetList[$j+1]
$targetList[$j+1]=$targetList[$j]
$targetList[$j]=$temp
}
}
}
}
}
$list = (1..$NumIntegers | foreach{Get-Random -minimum 1 -maximum $numIntegers})
$stopWatch = [system.diagnostics.stopwatch]::startNew()
[BubbleSort]::Sort($list)
[float]$elapsed = $stopWatch.Elapsed.TotalSeconds
2023-09-13 07:57:23 +02:00
$elapsed3 = "{0:N3}" -f $elapsed # formatted to 3 decimal places
"🧭 $elapsed3 sec to sort $numIntegers integers by BubbleSort"
2023-08-21 21:23:10 +02:00
exit 0 # success