{"id":50777028,"url":"https://github.com/gitmahin/data-structure-management-system","last_synced_at":"2026-06-12T00:30:38.289Z","repository":{"id":360075497,"uuid":"1248591007","full_name":"gitmahin/data-structure-management-system","owner":"gitmahin","description":"A C++ console application for learning and practicing core data structures  (Arrays, Linked Lists, Stacks, Queues, Trees, Graphs) with interactive menus,  built using CMake and documented with Doxygen.","archived":false,"fork":false,"pushed_at":"2026-06-01T22:16:06.000Z","size":139,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-01T22:23:21.285Z","etag":null,"topics":["cpp","dsa","management-system"],"latest_commit_sha":null,"homepage":"","language":"C++","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/gitmahin.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-24T20:56:45.000Z","updated_at":"2026-06-01T22:16:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/gitmahin/data-structure-management-system","commit_stats":null,"previous_names":["gitmahin/data-structure-management-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gitmahin/data-structure-management-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitmahin%2Fdata-structure-management-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitmahin%2Fdata-structure-management-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitmahin%2Fdata-structure-management-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitmahin%2Fdata-structure-management-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gitmahin","download_url":"https://codeload.github.com/gitmahin/data-structure-management-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitmahin%2Fdata-structure-management-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34224103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cpp","dsa","management-system"],"created_at":"2026-06-12T00:30:33.688Z","updated_at":"2026-06-12T00:30:38.209Z","avatar_url":"https://github.com/gitmahin.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Software Compatibility\n\n- GCC Version: 16.x.x\n- Supported Operating System: Cross-platform\n- Clang Version: 22.x.x\n\n## Download CMake (If not installed)\n\n- [Windows x64 Installer](https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-windows-x86_64.msi)\n- [macOS 10.13 or later](https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-macos-universal.dmg)\n- [macOS 10.10 or later](https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-macos10.10-universal.dmg)\n- [Linux x86_64](https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-linux-x86_64.sh)\n- [Linux aarch64](https://github.com/Kitware/CMake/releases/download/v4.3.2/cmake-4.3.2-linux-aarch64.sh)\n\n---\n\n### POSIX-compliant Systems Setup\n\nArch:\n\n```bash\nsudo pacman -Syu\ngcc --version\n```\n\nDebian:\n\n```bash\nsudo apt install gcc-16 g++-16\n```\n\nMac:\n\n```shell\nbrew install gcc@16\n```\n\nEnter into the project root and run\n\n```bash\ncmake -B build\ncd build\nmake\n./App\n```\n\n---\n\n### Windows Setup\n\n- Download \u0026 Install CMake\n- Install MinGW for c++ compiler\n  Update GCC to 16.x.x\n\n```shell\npacman -Syu\npacman -S mingw-w64-x86_64-gcc\npacman -S mingw-w64-ucrt-x86_64-gcc\ngcc --version\n```\n\nEnter into the project root and run\n\n```shell\ncmake -G \"MinGW Makefiles\" -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -B build\ncmake --build build\ncd build\n./App\n```\n\n---\n\n## Application Home UI:\n\n```txt\n///////////////////////////////////////////\nDATA STRUCTURE MANAGEMENT SYSTEM\n///////////////////////////////////////////\n\n========================================\n|          Data Structure Menu         |\n========================================\n| a -\u003e Array Operations                |\n| b -\u003e Linked List Operations          |\n| c -\u003e Stack Operations                |\n| d -\u003e Queue Operations                |\n| e -\u003e Searching Operations            |\n| f -\u003e Sorting Operations              |\n| g -\u003e Graph Operations                |\n| h -\u003e Tree Operations                 |\n========================================\n| s -\u003e Save all data                   |\n| z -\u003e Exit                            |\n========================================\nChoose an option:\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitmahin%2Fdata-structure-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgitmahin%2Fdata-structure-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitmahin%2Fdata-structure-management-system/lists"}