SortingAlgorithmProperties

SortingAlgorithmProperties#

class SortingAlgorithmProperties(name, algorithm_family, is_deterministic, best_case_time_complexity, best_case_description, average_case_time_complexity, worst_case_time_complexity, worst_case_description, space_complexity, is_stable)#

Bases: AlgorithmProperties

__init__(name, algorithm_family, is_deterministic, best_case_time_complexity, best_case_description, average_case_time_complexity, worst_case_time_complexity, worst_case_description, space_complexity, is_stable)#

Methods

__init__(name, algorithm_family, ...)

Attributes

algorithm_family: AlgorithmFamily#
average_case_time_complexity: str#
best_case_description: str#
best_case_time_complexity: str#
is_deterministic: bool#
is_stable: bool#
name: str#
space_complexity: str#
worst_case_description: str#
worst_case_time_complexity: str#