معرفی شرکت ها


algviz-0.2.2


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

An algorithm visualization tool for jupyter notebook to show animation for vector, table, linked list, tree and graph data structures.
ویژگی مقدار
سیستم عامل -
نام فایل algviz-0.2.2
نام algviz
نسخه کتابخانه 0.2.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده zjl9959
ایمیل نویسنده zjl9959@gmail.com
آدرس صفحه اصلی https://algviz.com/
آدرس اینترنتی https://pypi.org/project/algviz/
مجوز GPLv3
# Algviz [<img src="https://cdn.jsdelivr.net/gh/zjl9959/algviz@main/docs/images/logo_v1.svg"/>](https://algviz.com) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/algviz) ![PyPI](https://img.shields.io/pypi/v/algviz) ![Conda-forge](https://img.shields.io/conda/vn/conda-forge/algviz) ![License](https://img.shields.io/github/license/zjl9959/algviz) ![PyPI - Downloads](https://img.shields.io/pypi/dm/algviz) ## What is algviz? [Algviz](https://algviz.com) is an algorithm animation engine for your Python code in [Jupyter](https://jupyter.org/), which supports multiple data structures such as `vector`, `table`, `linked_list`, `tree` and `graph`. | Vector | Table | Tree | Graph | |:---:|:---:|:---:|:---:| | ![vector.svg] | ![table.svg] | ![tree.svg] | ![graph.svg] | You can get live algorithm animation after bringing some algviz interfaces to your algorithm. For example, this code shows the bubble sort algorithm: ```python import algviz def bubble_sort(data): viz = algviz.Visualizer(0.5) vector = viz.createVector(data, cell_size=(40, 160), histogram=True) for i in range(len(vector)): for j in range(len(vector)-i-1): if vector[j] > vector[j+1]: vector.mark(algviz.cRed, j) vector.mark(algviz.cGreen, j+1) viz.display() vector.swap(j, j+1) else: vector.mark(algviz.cRed, j+1) vector.mark(algviz.cGreen, j) viz.display() vector.mark(algviz.cGray, len(vector)-i-1, hold=True) vector.removeMark(algviz.cGray) viz.display() bubble_sort([5, 4, -2, 1, -1, 3]) ``` The rendered animation looks like this: ![bubble_sort_animation](https://cdn.jsdelivr.net/gh/zjl9959/algviz-launch@master/svgs/BubbleSort.svg) ## Examples Ready to see the magic? Click this button to try more algorithms on Gitpod! [![Open algviz examples in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/zjl9959/algviz-launch) ## Installation Please follow this [installation guide](https://algviz.com/en/installation.html) to setup algviz. ## Tutorial This [tutorial](https://algviz.com/en/examples.html) gives you a quick start on using algviz. All the API references can be found at [readthedocs](https://algviz.readthedocs.io/en/latest/api.html#). ## License Algviz uses GNU general public [LICENSE](https://github.com/zjl9959/algviz/blob/main/LICENSE). You can use it freely for learning and communication. ## Contribution Any form of contribution is welcomed! Please feel free to report a [bug](https://github.com/zjl9959/algviz/issues) or create a [pull request](https://github.com/zjl9959/algviz/pulls). [bubble sort algorithm]: https://en.wikipedia.org/wiki/Bubble_sort [vector.svg]: https://cdn.jsdelivr.net/gh/zjl9959/algviz.com@master/assets/img/data_vector.svg [table.svg]: https://cdn.jsdelivr.net/gh/zjl9959/algviz.com@master/assets/img/data_table.svg [tree.svg]: https://cdn.jsdelivr.net/gh/zjl9959/algviz.com@master/assets/img/data_tree.svg [graph.svg]: https://cdn.jsdelivr.net/gh/zjl9959/algviz.com@master/assets/img/data_graph.svg


نیازمندی

مقدار نام
!=0.18,<=0.19.1,>=0.8.4 graphviz
<=6.7.0,>=6.4.0 ipykernel


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

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


نحوه نصب


نصب پکیج whl algviz-0.2.2:

    pip install algviz-0.2.2.whl


نصب پکیج tar.gz algviz-0.2.2:

    pip install algviz-0.2.2.tar.gz