https://github.com/miroslavkolosnjaji/data-structures-by-example
This project contains my implementations of linear data structures, based on the 'Data Structures 1' course from Code with Mosh. The solutions are the result of solving practical exercises that focused on building methods and operations for each data structure.
https://github.com/miroslavkolosnjaji/data-structures-by-example
array-list code-with-mosh data-structures data-structures-and-algorithms hash-map linear-data-structures linked-list queue stack
Last synced: 3 months ago
JSON representation
This project contains my implementations of linear data structures, based on the 'Data Structures 1' course from Code with Mosh. The solutions are the result of solving practical exercises that focused on building methods and operations for each data structure.
- Host: GitHub
- URL: https://github.com/miroslavkolosnjaji/data-structures-by-example
- Owner: MiroslavKolosnjaji
- License: mit
- Created: 2024-11-30T12:13:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-14T09:02:05.000Z (over 1 year ago)
- Last Synced: 2024-12-14T10:17:06.944Z (over 1 year ago)
- Topics: array-list, code-with-mosh, data-structures, data-structures-and-algorithms, hash-map, linear-data-structures, linked-list, queue, stack
- Language: Java
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://dl.circleci.com/status-badge/redirect/circleci/K6MEbnQdqEgQE7qSJFetp9/3jK9D9Qmk6tp7PHjwzKBJe/tree/main)
[](https://codecov.io/gh/MiroslavKolosnjaji/data-structures-by-example)


[](https://opensource.org/licenses/MIT)

# data-structures-by-example
This project contains my implementations of linear data structures, based on the 'Data Structures 1' course from Code with Mosh.
The solutions are the result of solving practical exercises that focused on building methods and operations for each data structure.
In this project, I decided to consolidate all practical examples from multiple projects that I had previously created. Additionally,
I removed unnecessary classes used for testing data structures and replaced them with retroactively created unit tests.
### Data structures covered in this project
[](https://github.com/MiroslavKolosnjaji/data-structures-by-example/blob/main/src/main/java/com/myproject/arrays/ArrayList.java)
[](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/linkedlist)
[](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/stack)
[](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/queue)
[](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/hashtable)
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.