Prohlížeč zdrojového kódu

app/examples/sorting_algorithms/example.yml

title: Řadící algoritmy
description: Porovnejte různé řadící algoritmy na ukázkových datech.
tags:
- algoritmy
- řazení
source_file: sorting_algorithms.rb
entry_class: SortingAlgorithms
entry_method: sort
position: 1
scenarios:
- name: Seřadit čísla
description: Seřaďte seznam čísel pomocí různých algoritmů.
inputs:
- name: algorithm
label: Algoritmus
options:
- bubble_sort
- insertion_sort
- selection_sort
- name: dataset
label: Datová sada
options:
- "[5, 3, 8, 1, 9, 2]"
- "[10, 9, 8, 7, 6, 5, 4, 3, 2, 1]"
- "[1, 2, 3, 4, 5]"