mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-21 23:43:25 +01:00
77 lines
2.1 KiB
Markdown
77 lines
2.1 KiB
Markdown
|
*measure-sorting-algorithms.ps1*
|
||
|
================
|
||
|
|
||
|
This PowerShell script measures the speed of several sorting algorithms and prints it.
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
```powershell
|
||
|
PS> ./measure-sorting-algorithms.ps1 [[-numIntegers] <Int32>] [<CommonParameters>]
|
||
|
|
||
|
-numIntegers <Int32>
|
||
|
Specifies the number of integers to sort (3000 by default)
|
||
|
|
||
|
Required? false
|
||
|
Position? 1
|
||
|
Default value 3000
|
||
|
Accept pipeline input? false
|
||
|
Accept wildcard characters? false
|
||
|
|
||
|
[<CommonParameters>]
|
||
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||
|
```
|
||
|
|
||
|
Example
|
||
|
-------
|
||
|
```powershell
|
||
|
PS> ./measure-sorting-algorithms.ps1
|
||
|
🧭 Sorting 3000 integers by BubbleSort took 6.041561 sec
|
||
|
...
|
||
|
|
||
|
```
|
||
|
|
||
|
Notes
|
||
|
-----
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
|
||
|
Related Links
|
||
|
-------------
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
|
||
|
Script Content
|
||
|
--------------
|
||
|
```powershell
|
||
|
<#
|
||
|
.SYNOPSIS
|
||
|
Measures the speed of sorting algorithms
|
||
|
.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
|
||
|
🧭 Sorting 3000 integers by BubbleSort took 6.041561 sec
|
||
|
...
|
||
|
.LINK
|
||
|
https://github.com/fleschutz/PowerShell
|
||
|
.NOTES
|
||
|
Author: Markus Fleschutz | License: CC0
|
||
|
#>
|
||
|
|
||
|
param([int]$numIntegers = 3000)
|
||
|
|
||
|
" "
|
||
|
& "$PSScriptRoot/measure-BubbleSort.ps1" $numIntegers
|
||
|
& "$PSScriptRoot/measure-BucketSort.ps1" $numIntegers
|
||
|
& "$PSScriptRoot/measure-CountingSort.ps1" $numIntegers
|
||
|
& "$PSScriptRoot/measure-HeapSort.ps1" $numIntegers
|
||
|
& "$PSScriptRoot/measure-InsertionSort.ps1" $numIntegers
|
||
|
& "$PSScriptRoot/measure-MergeSort.ps1" $numIntegers
|
||
|
& "$PSScriptRoot/measure-QuickSort.ps1" $numIntegers
|
||
|
& "$PSScriptRoot/measure-SelectionSort.ps1" $numIntegers
|
||
|
exit 0 # success
|
||
|
```
|
||
|
|
||
|
*(generated by convert-ps2md.ps1 using the comment-based help of measure-sorting-algorithms.ps1 as of 09/01/2023 17:51:53)*
|