Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/patkub/java-data-structures-algorithms
Data structures and algorithms implemented in java
https://github.com/patkub/java-data-structures-algorithms
Last synced: 24 days ago
JSON representation
Data structures and algorithms implemented in java
- Host: GitHub
- URL: https://github.com/patkub/java-data-structures-algorithms
- Owner: patkub
- License: mit
- Created: 2015-05-10T17:23:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-20T21:02:01.000Z (about 8 years ago)
- Last Synced: 2023-08-10T05:42:19.042Z (about 1 year ago)
- Language: Java
- Size: 206 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Data Structures and Algorithms in Java
======================================Data structures and algorithms implemented in java.
| Item | Description |
|------------------------------|--------------------------------------------------------------------------------|
| Euclidean Algorithm | Recursivly compute the greatest common divisor. |
| Game Application | An application of a scoreboard using a Singly and Doubly Linked List. |
| Linked BST | Binary Search Tree implemented using a Singly Linked List. |
| Linked Queue | Queue FIFO data structure implemented using a Singly Linked List. |
| Linked Stack | Stack LIFO data structure implemented using a Singly Linked List. |
| Stock Capital Gain | Manages stock transactions using a Linked Circular Queue. |
| Summation Puzzle Solver | Solve summation puzzles recursively. |