https://github.com/jvillegasd/datastructures
https://github.com/jvillegasd/datastructures
bfs bstree bstui dijkstra graph sorting-algorithms
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jvillegasd/datastructures
- Owner: jvillegasd
- License: mit
- Created: 2017-11-24T08:13:02.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T20:19:07.000Z (almost 8 years ago)
- Last Synced: 2025-02-18T10:58:22.091Z (8 months ago)
- Topics: bfs, bstree, bstui, dijkstra, graph, sorting-algorithms
- Language: Java
- Size: 241 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Basic data structure software
This software has implemented some data structure like BST trees and graph (directed and undirected), you can draw your BST tree (After level 5-6 the code draws bad). You can apply BFS algorithm to the BST tree, in the graphs you can apply BFS and Dijkstra algorithms, of course you will see all the path of these algorithms (only BFS for BST tree right now).
As well its implement some sorts like quickSort, selecSort, insertSort and shellSort and you can see all the interations.