https://github.com/ramzijabali/data-structures-java
Reimplementation of Java data structures
https://github.com/ramzijabali/data-structures-java
data-structures java
Last synced: 7 months 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 (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-16T16:35:36.000Z (over 4 years ago)
- Last Synced: 2025-01-12T12:49:21.900Z (about 1 year ago)
- Topics: data-structures, java
- Language: Java
- Homepage:
- Size: 131 KB
- Stars: 0
- Watchers: 1
- 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/)