2023-10-31 12:48:22 +01:00
|
|
|
|
<#
|
2023-08-14 19:52:24 +02:00
|
|
|
|
.SYNOPSIS
|
2023-08-21 21:23:10 +02:00
|
|
|
|
Measures the speed of sorting algorithms
|
2023-08-14 19:52:24 +02:00
|
|
|
|
.DESCRIPTION
|
|
|
|
|
This PowerShell script measures the speed of several sorting algorithms and prints it.
|
|
|
|
|
.PARAMETER numIntegers
|
|
|
|
|
Specifies the number of integers to sort (3000 by default)
|
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./measure-sorting-algorithms.ps1
|
2023-09-13 07:57:23 +02:00
|
|
|
|
🧭 6.041 sec to sort 3000 integers by BubbleSort
|
2023-08-14 20:27:52 +02:00
|
|
|
|
...
|
2023-08-14 19:52:24 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
param([int]$numIntegers = 3000)
|
2023-08-21 21:23:10 +02:00
|
|
|
|
|
2023-08-14 19:52:24 +02:00
|
|
|
|
" "
|
|
|
|
|
& "$PSScriptRoot/measure-BubbleSort.ps1" $numIntegers
|
|
|
|
|
& "$PSScriptRoot/measure-BucketSort.ps1" $numIntegers
|
2023-08-14 20:27:52 +02:00
|
|
|
|
& "$PSScriptRoot/measure-CountingSort.ps1" $numIntegers
|
2023-08-14 19:52:24 +02:00
|
|
|
|
& "$PSScriptRoot/measure-HeapSort.ps1" $numIntegers
|
2023-08-14 20:27:52 +02:00
|
|
|
|
& "$PSScriptRoot/measure-InsertionSort.ps1" $numIntegers
|
|
|
|
|
& "$PSScriptRoot/measure-MergeSort.ps1" $numIntegers
|
2023-08-14 19:52:24 +02:00
|
|
|
|
& "$PSScriptRoot/measure-QuickSort.ps1" $numIntegers
|
2023-08-14 20:27:52 +02:00
|
|
|
|
& "$PSScriptRoot/measure-SelectionSort.ps1" $numIntegers
|
2023-08-14 19:52:24 +02:00
|
|
|
|
exit 0 # success
|