![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
An algorithm visualization tool for jupyter notebook to show animation for vector, table, linked list, tree and graph data structures.
Algviz is an algorithm animation engine for your Python code in Jupyter, which supports multiple data structures such as vector
, table
, linked_list
, tree
and graph
.
Vector | Table | Tree | Graph |
---|---|---|---|
You can get live algorithm animation after bringing some algviz interfaces to your algorithm. For example, this code below shows the bubble sort algorithm:
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:
If you are interested in this project, please give me a star⭐, thanks!
Ready to see the magic? Click this button to try more algorithms on Gitpod!
Need to login with your github account.
Please follow this installation guide to setup algviz.
This tutorial gives you a quick start on using algviz.
All the API references can be found at algviz API reference.
Algviz uses GNU general public LICENSE. You can use it freely for learning and communication. For the commercial usage, please contact the author.
Any form of contribution is welcomed! Please feel free to report a bug or create a pull request.
If you want to share your algorithms using algviz, you can create a PR from this repo: 👉 algviz-launch.
QQ group: 334605370
Telegram: https://t.me/+mvF8Sivxr3thZWY1
FAQs
An algorithm visualization tool for jupyter notebook to show animation for vector, table, linked list, tree and graph data structures.
We found that algviz demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.