Skip to content

Latest commit

 

History

History
110 lines (89 loc) · 3.75 KB

README.md

File metadata and controls

110 lines (89 loc) · 3.75 KB
scratches-algorithms

PyPI Version Python Version License

GitHub Stars
GitHub Forks
GitHub Issues
GitHub Pull Requests

English

Scratches Algorithms – this package is a Python client library with classic sorting and search algorithms and simple utilities for working with numbers, number systems and code performance control.

You can find the source code on GitHub.

Installation

Install the current version from PyPI:

pip install scratches-algorithms

Structure

  • algorithms
    • Sort
      • bubble
      • shaker
      • insertion
      • selection
      • counting
      • merge
      • quick
    • Find
      • linear
      • binary
  • utils
    • NumbersProperties
      • divisors
      • count_divisors
      • fibonacci
      • is_prime
      • is_square
    • NumeralSystem
      • to_base
    • PerformanceTracking
      • __init__
      • __del__
      • func_timer
      • get_size
Русский

Scratch Algorithms – это пакет, который представляет собой клиентскую библиотеку Python с классическими алгоритмами сортировки и поиска и простыми утилитами для работы с числами, системами счисления и контроля производительности кода.

Вы можете найти исходный код на Github.

Установка

Установить текущую версию с PyPI:

pip install scratch-algorithms

Структура

  • algorithms
    • Sort
      • bubble
      • shaker
      • insertion
      • selection
      • counting
      • merge
      • quick
    • Find
      • linear
      • binary
  • utils
    • NumbersProperties
      • divisors
      • fibonacci
      • is_prime
      • is_square
    • NumeralSystem
      • to_base
    • PerformanceTracking
      • __init__
      • __del__
      • func_timer