{"id":25562685,"url":"https://github.com/miroslavkolosnjaji/data-structures-by-example","last_synced_at":"2026-03-09T11:30:18.492Z","repository":{"id":268096915,"uuid":"896455949","full_name":"MiroslavKolosnjaji/data-structures-by-example","owner":"MiroslavKolosnjaji","description":"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.","archived":false,"fork":false,"pushed_at":"2024-12-14T09:02:05.000Z","size":65,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-14T10:17:06.944Z","etag":null,"topics":["array-list","code-with-mosh","data-structures","data-structures-and-algorithms","hash-map","linear-data-structures","linked-list","queue","stack"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MiroslavKolosnjaji.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-30T12:13:18.000Z","updated_at":"2024-12-14T09:02:09.000Z","dependencies_parsed_at":"2024-12-14T10:27:09.115Z","dependency_job_id":null,"html_url":"https://github.com/MiroslavKolosnjaji/data-structures-by-example","commit_stats":null,"previous_names":["miroslavkolosnjaji/data-structures-by-example"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MiroslavKolosnjaji%2Fdata-structures-by-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MiroslavKolosnjaji%2Fdata-structures-by-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MiroslavKolosnjaji%2Fdata-structures-by-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MiroslavKolosnjaji%2Fdata-structures-by-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MiroslavKolosnjaji","download_url":"https://codeload.github.com/MiroslavKolosnjaji/data-structures-by-example/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239907226,"owners_count":19716583,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["array-list","code-with-mosh","data-structures","data-structures-and-algorithms","hash-map","linear-data-structures","linked-list","queue","stack"],"created_at":"2025-02-20T19:48:49.340Z","updated_at":"2026-03-09T11:30:18.457Z","avatar_url":"https://github.com/MiroslavKolosnjaji.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CircleCI](https://dl.circleci.com/status-badge/img/circleci/K6MEbnQdqEgQE7qSJFetp9/3jK9D9Qmk6tp7PHjwzKBJe/tree/main.svg?style=svg\u0026circle-token=CCIPRJ_J8E7uAXYMdzJeqpUxB4BXW_0d8d246beb4a1b920d48a54e5dac37a6fe85781d)](https://dl.circleci.com/status-badge/redirect/circleci/K6MEbnQdqEgQE7qSJFetp9/3jK9D9Qmk6tp7PHjwzKBJe/tree/main)\n[![codecov](https://codecov.io/gh/MiroslavKolosnjaji/data-structures-by-example/graph/badge.svg?token=HHr5PA731s)](https://codecov.io/gh/MiroslavKolosnjaji/data-structures-by-example)\n![Java](https://img.shields.io/badge/Java-17-brightgreen)\n![Data Structures Badge](https://img.shields.io/badge/Data%20Structures-Learning-informational?style=round-square\u0026color=brightgreen)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n![GitHub forks](https://img.shields.io/github/forks/MiroslavKolosnjaji/data-structures-by-example)\n\n\n# data-structures-by-example\nThis project contains my implementations of linear data structures, based on the 'Data Structures 1' course from Code with Mosh.\nThe solutions are the result of solving practical exercises that focused on building methods and operations for each data structure.\nIn this project, I decided to consolidate all practical examples from multiple projects that I had previously created. Additionally,\nI removed unnecessary classes used for testing data structures and replaced them with retroactively created unit tests.\n\n ### Data structures covered in this project\n\n[![ArrayList](https://img.shields.io/badge/ArrayList-%23FF5733?style=for-the-badge\u0026logo=github)](https://github.com/MiroslavKolosnjaji/data-structures-by-example/blob/main/src/main/java/com/myproject/arrays/ArrayList.java)\n[![LinkedList](https://img.shields.io/badge/LinkedList-%23C70039?style=for-the-badge\u0026logo=github)](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/linkedlist)\n[![Stack](https://img.shields.io/badge/Stack-%23900C3F?style=for-the-badge\u0026logo=github)](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/stack)\n[![Queue](https://img.shields.io/badge/Queue-%23581845?style=for-the-badge\u0026logo=github)](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/queue)\n[![Map](https://img.shields.io/badge/Map-%231A5276?style=for-the-badge\u0026logo=github)](https://github.com/MiroslavKolosnjaji/data-structures-by-example/tree/main/src/main/java/com/myproject/hashtable)\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiroslavkolosnjaji%2Fdata-structures-by-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiroslavkolosnjaji%2Fdata-structures-by-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiroslavkolosnjaji%2Fdata-structures-by-example/lists"}