{"id":28449889,"url":"https://github.com/mohammed-3tef/data_structure_and_algorithms","last_synced_at":"2025-07-01T12:32:22.931Z","repository":{"id":297290211,"uuid":"941648915","full_name":"Mohammed-3tef/Data_Structure_and_Algorithms","owner":"Mohammed-3tef","description":"A Collection of Algorithm \u0026 Data Structure Problems using C++.","archived":false,"fork":false,"pushed_at":"2025-06-14T06:09:13.000Z","size":222,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-14T07:25:23.087Z","etag":null,"topics":["algorithms","bst","clean-code","cpp","data-structures","linked-list","oop","queue","sorting-algorithms","stack","tree"],"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/Mohammed-3tef.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}},"created_at":"2025-03-02T19:24:45.000Z","updated_at":"2025-06-14T06:09:16.000Z","dependencies_parsed_at":"2025-06-06T14:38:04.452Z","dependency_job_id":null,"html_url":"https://github.com/Mohammed-3tef/Data_Structure_and_Algorithms","commit_stats":null,"previous_names":["mohammed-3tef/data_structure_algorithms","mohammed-3tef/data_structure_and_algorithms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Mohammed-3tef/Data_Structure_and_Algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohammed-3tef%2FData_Structure_and_Algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohammed-3tef%2FData_Structure_and_Algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohammed-3tef%2FData_Structure_and_Algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohammed-3tef%2FData_Structure_and_Algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Mohammed-3tef","download_url":"https://codeload.github.com/Mohammed-3tef/Data_Structure_and_Algorithms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Mohammed-3tef%2FData_Structure_and_Algorithms/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262963202,"owners_count":23391772,"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":["algorithms","bst","clean-code","cpp","data-structures","linked-list","oop","queue","sorting-algorithms","stack","tree"],"created_at":"2025-06-06T14:30:52.814Z","updated_at":"2025-07-01T12:32:22.922Z","avatar_url":"https://github.com/Mohammed-3tef.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Structure Algorithms\n\nA curated collection of core data structures and algorithms implemented in C++. This repository is built for learning, practicing, and mastering fundamental concepts in computer science.\n\n---\n\n## 📂 Repository Overview\n\nThis project includes implementations of:\n\n- Sorting (Bubble, Bucket, Count, Insertion, Selection, Shell, Merge, Radix, Quick)\n- Linked Lists (Singly, Doubly)\n- Stacks\n- Queues (Circular, Priority)\n- Trees (BST, AVL)\n\n---\n\n## 🧪 Folder Structure\n\n```bash\nData_Structure_Algorithms/\n│\n├── Linked List/\n│   ├── Single Linked List/\n│       ├── main.cpp\n│       ├── Problem_Solving.h\n│       ├── Ordered_Linked_List.h\n│       ├── Unordered_Linked_List.h\n│       └── README.md\n│\n│   └── Doubly Linked List/\n│       ├── main.cpp\n│       ├── Circular_Linked_List.h\n│       ├── Doubly_Linked_List.h\n│       └── README.md\n│\n├── Sorting Algorithms/\n│   ├── Bubble Sort/\n│   ├── Bucket Sort/\n│   ├── Count Sort/\n│   ├── Insertion Sort/\n│   ├── Merge Sort/\n│   ├── Quick Sort/\n│   ├── Radix Sort/\n│   ├── Selection Sort/\n│   ├── Shell Sort/\n|   ├── Heap Sort/\n│   └── README.md\n│\n├── Stack \u0026 Queue/\n│   ├── main.cpp\n│   ├── Stack.h\n|   ├── PriorityQueue.h\n│   └── Queue.h\n│\n├── Trees/\n│   ├── AVL/\n│       ├── main.cpp\n│       ├── AVL.h\n│       └── README.md\n│\n│   ├── BST/\n│       ├── main.cpp\n│       ├── BST.h\n│       ├── Problem_Solving.h\n│       └── README.md\n│\n│   └── Heap/\n│       ├── main.cpp\n│       ├── MaxHeap.h\n│       ├── MinHeap.h\n│       └── README.md\n│\n├── README.md\n└── LICENSE\n```\n\n\u003e Each file is self-contained and includes test cases or a `main()` for demonstration.\n\n---\n\n## 📚 Educational Purpose\n\nThis repository serves as:\n\n* A personal learning log and revision tool\n* A reference for students and interview prep\n* A foundation for competitive programming practice\n\n---\n\n## 🙌 Contributions\n\nYour contributions are welcome!\n\n1. Fork this repository\n2. Create your feature branch: `git checkout -b feature-name`\n3. Commit your changes: `git commit -m \"Added AVL Tree\"`\n4. Push to the branch: `git push origin feature-name`\n5. Open a pull request\n\nPlease maintain consistent code style and add comments where helpful.\n\n---\n\n## 📄 License\n\nLicensed under the [MIT License](https://github.com/Mohammed-3tef/Data_Structure_Algorithms/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohammed-3tef%2Fdata_structure_and_algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohammed-3tef%2Fdata_structure_and_algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohammed-3tef%2Fdata_structure_and_algorithms/lists"}