{"id":21342727,"url":"https://github.com/alexzgut/data_structures_and_algorithms","last_synced_at":"2025-03-16T03:12:15.294Z","repository":{"id":261320537,"uuid":"882057696","full_name":"AlexzGut/Data_Structures_and_Algorithms","owner":"AlexzGut","description":"This repository is dedicated to my journey in mastering data structures and algorithms. The goal is to strengthen my problem-solving skills, gain a deeper understanding of different data structures, and prepare for coding interviews.","archived":false,"fork":false,"pushed_at":"2024-11-21T22:40:37.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-22T15:45:19.689Z","etag":null,"topics":["algorithms","arrays","data-structures","data-structures-and-algorithms","java","linked-list","priority-queue","queues","stacks"],"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/AlexzGut.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-01T19:38:28.000Z","updated_at":"2024-11-21T22:40:41.000Z","dependencies_parsed_at":"2024-11-05T23:18:37.984Z","dependency_job_id":"7400aea1-8582-4154-960f-d6056c9126a8","html_url":"https://github.com/AlexzGut/Data_Structures_and_Algorithms","commit_stats":null,"previous_names":["alexzgut/data_structures_and_algorithms"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexzGut%2FData_Structures_and_Algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexzGut%2FData_Structures_and_Algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexzGut%2FData_Structures_and_Algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexzGut%2FData_Structures_and_Algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexzGut","download_url":"https://codeload.github.com/AlexzGut/Data_Structures_and_Algorithms/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243818198,"owners_count":20352629,"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","arrays","data-structures","data-structures-and-algorithms","java","linked-list","priority-queue","queues","stacks"],"created_at":"2024-11-22T01:09:47.986Z","updated_at":"2025-03-16T03:12:15.275Z","avatar_url":"https://github.com/AlexzGut.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Structures and Algorithms\n\nWelcome to the **Data Structures and Algorithms** repository! This repository is dedicated to my journey in mastering data structures and algorithms. The goal is to strengthen my problem-solving skills, gain a deeper understanding of different data structures, and prepare for coding interviews.\n\n## Repository Structure\n\nThe repository is organized into two main categories: **Data Structures** and **Algorithms**. Each category is further divided into subfolders that contain specific implementations.\n\n   ```bash\n    Data_Structures_and_Algorithms/ \n   ├── src/\n   │   ├── main/\n   │   │   └── java/\n   │   │       └── com/\n   │   │           └── alexzgut/\n   │   │               └── dsa/\n   │   │                   ├── DataStructures/\n   │   │                   └── Algorithms/\n   │   └── test/\n   │       └── java/\n   │           └── com/\n   │               └── alexzgut/\n   │                   └── dsa/\n   │                       └── tests/\n   ├── pom.xml\n   ├── README.md\n   └── LICENSE \n   ```\n\n### Folders and Content\n\n- **DataStructures**: This directory contains implementations of various data structures. Each data structure has its own folder with specific code files.\n  \n- **Algorithms**: This directory includes different categories of algorithms. Each algorithm category has code files for specific algorithms.\n\n## Getting Started\n\nTo use this repository:\n\n**Clone the Repository**:\n\n```bash\n    git clone https://github.com/AlexzGut/Data_Structures_and_Algorithms.git\n    cd Data_Structures_and_Algorithms\n```\n\n## Building and Running with Maven\n\n1. **Build the Project**:\n    ```bash\n    mvn clean compile\n    ```\n\n2. **Run Tests**:\n    ```bash\n    mvn test\n    ```\n\n3. **Run Specific Class**:\n   Replace `MainClass` with the actual main class name.\n    ```bash\n    mvn exec:java -Dexec.mainClass=\"com.yourname.dsa.MainClass\"\n    ```\n\n## Dependencies\n\nThis project uses the following dependencies:\n- **JUnit 5**: For testing (included in the `pom.xml`).\n\n\n## Progress and Goals 🚀\n\n- Implement foundational data structures and algorithms.\n- Optimize and understand time and space complexities.\n- Prepare for coding interviews by practicing common problems.\n\n## Resources\n\nThese implementations and exercises are inspired by:\n\n- **Books**: [\"Data Structures and Algorithms in Java\" by Robert Lafore.](https://github.com/abhishek63/Fav-Book/blob/master/Data%20Structures%20%26%20Algorithms%20in%20Java%20-%20Robert%20Lafore.pdf)\n- **Online Platforms**: [LeetCode](https://leetcode.com/).\n- **Courses**: [LinkedIn Learning](https://www.linkedin.com/learning/).\n\n## Contributing\n\nI’m continuously improving and expanding this repository. If you find any issues or have suggestions, feel free to open an issue or submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n\n---\n\nThank you for visiting my Data Structures and Algorithms repository! Let's keep coding and growing. 💻\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexzgut%2Fdata_structures_and_algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexzgut%2Fdata_structures_and_algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexzgut%2Fdata_structures_and_algorithms/lists"}