blob: b65ed04164e4252d6de6d87de6a7a2ca6a0623f4 (
plain) (
tree)
|
|
# Copyright 2016 Egor Tensin <Egor.Tensin@gmail.com>
# This file is licensed under the terms of the MIT License.
# See LICENSE.txt for details.
from . import inputgen
class Algorithm:
def __init__(self, codename, display_name, f):
self.codename = codename
self.display_name = display_name
self.function = f
@staticmethod
def gen_input(n, case=inputgen.InputKind.AVERAGE):
#raise NotImplementedError('inputgen generation is not defined for generic algorithms')
return inputgen.gen_input_for_sorting(n, case)
class SortingAlgorithm(Algorithm):
def __init__(self, codename, display_name, f):
super().__init__(codename, display_name, f)
def gen_input(self, n, case=inputgen.InputKind.AVERAGE):
return inputgen.gen_input_for_sorting(n, case)
|