معرفی شرکت ها


artific-0.0.9


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

An algorithm visualization pip package for Python
ویژگی مقدار
سیستم عامل -
نام فایل artific-0.0.9
نام artific
نسخه کتابخانه 0.0.9
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Nipun Waas
ایمیل نویسنده waasnipun@gmail.com
آدرس صفحه اصلی https://github.com/waasnipun/artific
آدرس اینترنتی https://pypi.org/project/artific/
مجوز MIT license
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/othneildrew/Best-README-Template"> <img src="https://github.com/waasnipun/artific/raw/main/assets/banner.jpg" alt="Logo"> </a> <p align="center"> An algorithm visualization pip package for Python <br /> <a href="https://artific-doc.readthedocs.io"><strong>Explore the docs »</strong></a> <br /> <br /> <!-- <a href="https://github.com/othneildrew/Best-README-Template">View Demo</a> · <a href="https://github.com/othneildrew/Best-README-Template/issues">Report Bug</a> · <a href="https://github.com/othneildrew/Best-README-Template/issues">Request Feature</a> --> </p> <div align="center"> <!-- <a href='https://artific-doc.readthedocs.io/en/main/?badge=main'> <img src='https://readthedocs.org/projects/artific-doc/badge/?version=main' alt='Documentation Status' /> </a> --> <a href='https://pypi.python.org/pypi/artific'> <img src='https://img.shields.io/pypi/v/artific.svg' alt='Pypi status' /> </a> <a href='https://opensource.org/licenses/MIT'> <img src='https://img.shields.io/badge/License-MIT-yellow.svg' alt='Travis CI status' /> </a> </div> </div> <!-- TABLE OF CONTENTS --> <summary>Table of Contents</summary> <ol> <li> <a href="#getting-started">Getting Started</a> <ul> <li><a href="#installation">Installation</a></li> </ul> </li> <li> <a href="#algorithms">Algorithms</a> <ul> <li> <a href="#sorting">Sorting</a> <ul> <li><a href="#bubblesort">Bubblesort</a></li> <li><a href="#heapsort">Heapsort</a></li> <li><a href="#insertionsort">Insertionsort</a></li> </ul> </li> <li> <a href="#searching">Searching</a> <ul> <li><a href="#linearsearch">Linear search</a></li> <li><a href="#binarysearch">Binary search</a></li> </ul> </li> </ul> </li> <li><a href="#notebooks">Notebooks</a></li> <li><a href="#todo">TODO</a></li> <li><a href="#acknowledgments">Acknowledgments</a></li> </ol> ## Getting Started ## Installation ### Stable release To install artific, run this command in your terminal ``` pip install artific ``` This is the preferred method to install artific, as it will always install the most recent stable release. If you don't have <a href="https://pip.pypa.io">pip</a> installed, this <a href="http://docs.python-guide.org/en/latest/starting/installation/">Python installation guide</a> can guide you through the process. <br></br> ## Algorithms ### Sorting #### Bubblesort ``` from artific import BubbleSort arr = [90,6,2,55,67,2,0,12,92,5,76,2,9,3] arr = BubbleSort(arr) arr.visualize() print(arr) ``` Output ```angular2html [0, 2, 2, 2, 3, 5, 6, 9, 12, 55, 67, 76, 90, 92] ``` The code above will generate the following GIF ![](https://github.com/waasnipun/artific/blob/main/assets/bubble_sort.gif) #### Insertionsort ``` from artific import InsertionSort arr = [90,6,2,55,67,2,0,12,92,5,76,2,9,3] arr = InsertionSort(arr) arr.visualize() print(arr) ``` Output ```angular2html [0, 2, 2, 2, 3, 5, 6, 9, 12, 55, 67, 76, 90, 92] ``` The code above will generate the following GIF ![](https://github.com/waasnipun/artific/blob/main/assets/insertion_sort.gif) #### Heapsort ``` from artific import HeapSort arr = [90,6,2,55,67,2,0,12,92,5,76,2,9,3] arr = HeapSort(arr) arr.visualize() print(arr) ``` Output ```angular2html [0, 2, 2, 2, 3, 5, 6, 9, 12, 55, 67, 76, 90, 92] ``` The code above will generate the following GIF ![](https://github.com/waasnipun/artific/blob/main/assets/heapsort.gif) ### Searching #### Linear search ``` from artific import LinearSearch arr = [90,6,2,55,67,2,0,12,92,5,76,2,9,3] obj = LinearSearch(arr,1) obj.visualize() print(obj) ``` Output ```angular2html 3 ``` The code above will generate the following GIF ![](https://github.com/waasnipun/artific/blob/main/assets/linearsearch.gif) #### Linear search ``` from artific import BinarySearch arr = [0, 2, 2, 2, 3, 5, 6, 9, 12, 55, 67, 76, 90, 92] obj = LinearSearch(arr,55) obj.visualize() print(obj) ``` Output ```angular2html 9 ``` The code above will generate the following GIF ![](https://github.com/waasnipun/artific/blob/main/assets/binarysearch.gif.gif) ## TODO * Searching * Graph Algorithms * Trees ## Acknowledgments This package was created with <a href="https://github.com/audreyr/cookiecutter">Cookiecutter</a> and the <a href="https://github.com/audreyr/cookiecutter-pypackage">audreyr/cookiecutter-pypackage</a> project template.


نیازمندی

مقدار نام
>=7.0 Click
- scipy
- numpy
- matplotlib
- imageio


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl artific-0.0.9:

    pip install artific-0.0.9.whl


نصب پکیج tar.gz artific-0.0.9:

    pip install artific-0.0.9.tar.gz