Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ramzijabali/data-structures-java
Reimplementation of Java data structures
https://github.com/ramzijabali/data-structures-java
data-structures java
Last synced: 2 days ago
JSON representation
Reimplementation of Java data structures
- Host: GitHub
- URL: https://github.com/ramzijabali/data-structures-java
- Owner: RamziJabali
- License: mit
- Created: 2020-11-28T05:25:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-16T16:35:36.000Z (over 3 years ago)
- Last Synced: 2023-08-01T22:48:45.794Z (over 1 year ago)
- Topics: data-structures, java
- Language: Java
- Homepage:
- Size: 131 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Java Data Structures
This project was to replicate Java built-in data structures for educational purposes.
### RChar
- getValueOf()
- toUpperCase()
- isDigit()
- isLetter()
- isEmpty()
- isSpace()
- isLowerCase()
- isUpperCase()
- toLowerCase()
- toUpperCase()
### RString
- getRCharArray()
- getSize()
- getReverse()
- isEmpty()### RArrayList
- add(T)
- removeData(T)
- removeAtIndex(int)
- removeAll()
- getReverseArrayList()
- getLast()
- getFirst()
- getAtIndex(int)
- isEmpty()
### RBinaryTree
- insert(T)
- doesContain(T)
- removeData(T)
- showTree()## Libraries
- [JUnit](https://junit.org/junit5/)