{"id":23277708,"url":"https://github.com/muhammadsalmanaziz/data-structures","last_synced_at":"2025-04-06T12:19:35.860Z","repository":{"id":240512792,"uuid":"802837642","full_name":"MuhammadSalmanAziz/Data-Structures","owner":"MuhammadSalmanAziz","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-22T18:55:04.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-12T17:57:52.643Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MuhammadSalmanAziz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-05-19T12:02:52.000Z","updated_at":"2024-05-22T18:55:07.000Z","dependencies_parsed_at":"2024-12-19T22:14:10.463Z","dependency_job_id":"8ed88640-475e-4be7-bc7e-f546a18fcd25","html_url":"https://github.com/MuhammadSalmanAziz/Data-Structures","commit_stats":null,"previous_names":["muhammadsalmanaziz/data-structures"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammadSalmanAziz%2FData-Structures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammadSalmanAziz%2FData-Structures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammadSalmanAziz%2FData-Structures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MuhammadSalmanAziz%2FData-Structures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MuhammadSalmanAziz","download_url":"https://codeload.github.com/MuhammadSalmanAziz/Data-Structures/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247478801,"owners_count":20945345,"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":[],"created_at":"2024-12-19T22:14:02.695Z","updated_at":"2025-04-06T12:19:35.653Z","avatar_url":"https://github.com/MuhammadSalmanAziz.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Structures\n\nWelcome \"Data Structures\" project repository! This repository serves as a comprehensive guide to the fundamental data structures used in computer science.\n\n## About the Project\n\nData structures are the building blocks of any computer program. They provide efficient ways to organize and manage data, enabling developers to write more effective and optimized code. In this project, we aim to explore a variety of data structures, understand their properties, and implement them in various programming languages.\n\n## Table of Contents\n\n1. [Arrays](#arrays)\n2. [Linked Lists](#linked-lists)\n3. [Stacks](#stacks)\n4. [Queues](#queues)\n5. [Trees](#trees)\n6. [Graphs](#graphs)\n7. [Hashing](#hashing)\n8. [Heaps](#heaps)\n9. [Sorting Algorithms](#sorting-algorithms)\n\n## Arrays\n\nArrays are the most fundamental data structure, providing a way to store a collection of elements of the same data type. In this section, we'll cover:\n\n- Basic array operations (access, insert, delete, search)\n- Dynamic arrays and resizing\n- Multi-dimensional arrays\n- Time and space complexity analysis\n\n## Linked Lists\n\nLinked lists are a dynamic data structure where each element (called a node) contains data and a reference (or link) to the next node in the sequence. We'll explore:\n\n- Singly Linked Lists\n- Doubly Linked Lists\n- Circular Linked Lists\n- Implementing basic operations (insert, delete, search)\n\n## Stacks\n\nStacks are a Last-In-First-Out (LIFO) data structure, where elements are added and removed from the top of the stack. We'll cover:\n\n- Basic stack operations (push, pop, peek)\n- Applications of stacks (expression evaluation, function calls, undo/redo)\n- Implementing stacks using arrays and linked lists\n\n## Queues\n\nQueues are a First-In-First-Out (FIFO) data structure, where elements are added to the rear and removed from the front. We'll explore:\n\n- Basic queue operations (enqueue, dequeue, peek)\n- Priority Queues\n- Implementing queues using arrays and linked lists\n\n## Trees\n\nTrees are a hierarchical data structure that organizes data in a tree-like fashion. We'll cover:\n\n- Binary Trees\n- Binary Search Trees\n- AVL Trees\n- Red-Black Trees\n- Traversal Algorithms (Preorder, Inorder, Postorder, Level-Order)\n\n## Graphs\n\nGraphs are a data structure that represents a set of objects (vertices) and the connections between them (edges). We'll explore:\n\n- Graph Representations (Adjacency Matrix, Adjacency List)\n- Graph Traversal Algorithms (Depth-First Search, Breadth-First Search)\n- Shortest Path Algorithms (Dijkstra's, Bellman-Ford)\n\n## Hashing\n\nHashing is a technique for efficiently storing and retrieving data. We'll cover:\n\n- Hash Functions and Collision Handling\n- Hash Tables\n- Applications of Hashing (Caching, Cryptography)\n\n## Heaps\n\nHeaps are a specialized tree-based data structure that satisfies the heap property. We'll explore:\n\n- Min Heaps and Max Heaps\n- Heap Operations (Insert, Extract, Heapify)\n- Priority Queues using Heaps\n\n## Sorting Algorithms\n\nSorting is a fundamental operation in computer science. We'll cover various sorting algorithms, including:\n\n- Bubble Sort\n- Insertion Sort\n- Selection Sort\n- Merge Sort\n- Quick Sort\n- Heap Sort\n- Radix Sort\n\n## Contributing\n\nWe welcome contributions to this project! If you have any suggestions, bug reports, or would like to add new content, please feel free to open an issue or submit a pull request.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuhammadsalmanaziz%2Fdata-structures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuhammadsalmanaziz%2Fdata-structures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuhammadsalmanaziz%2Fdata-structures/lists"}