2021-10-23 13:20:37 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
# EXPORTS
|
|
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
from code.algorithms.search.sequential import SequentialSearch;
|
|
|
|
from code.algorithms.search.binary import BinarySearch;
|
|
|
|
from code.algorithms.search.interpol import InterpolationSearch;
|
|
|
|
from code.algorithms.search.jump import JumpSearchLinear;
|
2021-10-24 19:33:08 +02:00
|
|
|
from code.algorithms.search.selection import SelectionAlgorithm;
|