AlgorithmProperties#
- class AlgorithmProperties(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)#
Bases:
object
- __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)#
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#
- name: str#
- space_complexity: str#
- worst_case_description: str#
- worst_case_time_complexity: str#