{"id":25884716,"url":"https://github.com/squizly/data-structures-and-algorithms","last_synced_at":"2025-10-08T19:41:06.689Z","repository":{"id":269957919,"uuid":"907342840","full_name":"Squizly/Data-Structures-and-Algorithms","owner":"Squizly","description":"University Tasks on Algorithms and Data Structures in C++ 📚💻","archived":false,"fork":false,"pushed_at":"2025-03-23T13:35:03.000Z","size":806,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T14:30:10.275Z","etag":null,"topics":["algorithms-and-data-structures","cplusplus","cplusplus-14"],"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/Squizly.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":"2024-12-23T11:18:39.000Z","updated_at":"2025-03-23T13:33:45.000Z","dependencies_parsed_at":"2024-12-27T13:18:38.106Z","dependency_job_id":"cb73676e-82f8-447c-b5bf-e70964b75ec6","html_url":"https://github.com/Squizly/Data-Structures-and-Algorithms","commit_stats":null,"previous_names":["squizly/data-structures-and-algorithms"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Squizly/Data-Structures-and-Algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Squizly%2FData-Structures-and-Algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Squizly%2FData-Structures-and-Algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Squizly%2FData-Structures-and-Algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Squizly%2FData-Structures-and-Algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Squizly","download_url":"https://codeload.github.com/Squizly/Data-Structures-and-Algorithms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Squizly%2FData-Structures-and-Algorithms/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264400215,"owners_count":23602226,"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-and-data-structures","cplusplus","cplusplus-14"],"created_at":"2025-03-02T17:18:07.789Z","updated_at":"2025-10-08T19:41:01.639Z","avatar_url":"https://github.com/Squizly.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data Structures and Algorithms in C++\n\n![License](https://img.shields.io/badge/license-MIT-blue)\n\nWelcome to the **Data Structures and Algorithms in C++** repository! This repository contains a collection of projects and exercises aimed at learning and implementing data structures and algorithms using the C++ programming language.\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg height=\"200\" width=\"300\" src=\"https://media.giphy.com/media/scZPhLqaVOM1qG4lT9/giphy.gif?cid=790b7611363i2i3s1kil7ujcr9abopu7jr2xy2u24o10vdmx\u0026ep=v1_gifs_search\u0026rid=giphy.gif\u0026ct=g\"  /\u003e\n\u003c/div\u003e\n\n## Table of Contents\n\n- [Overview](#overview)\n- [Repository Structure](#repository-structure)\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Overview\n\nThis repository is designed to the practical implementation of essential algorithms and data structures. It includes:\n\n- Implementations of sorting algorithms\n- Using sorting algorithms to determine a participant's ranking in a programming olympiad.\n- Implementation of a binary tree class `In development`\n- Various graph-related tasks `TO DO:`\n\nThe aim is to provide a hands-on approach to learning through well-structured code and clear examples.\n\n## Repository Structure\n\n```plaintext\n├── ASD_Lab1_sorting_algorithms\n│   ├── Sort.h\n│   ├── Sort.cpp\n│   └── main.cpp\n├── ASD_Lab2_programming_olympiad\n│   ├── Member.h\n│   ├── Member.cpp\n│   └── main.cpp\n├── ASD_Lab3_binary_tree\n│   ├── BinaryTree.h\n│   ├── BinaryTree.cpp\n│   └── main.cpp\n└── LICENSE\n```\n\n- `ASD_Lab1_sorting_algorithms`: Laboratory work focusing on various sorting algorithms.\n- `ASD_Lab2_programming_olympiad`: Determining a participant's ranking in an olympiad using sorting algorithms.\n- `ASD_Lab3_binary_tree`: Construction of binary and optimal trees.\n- `LICENSE`: Information about the project license.\n\n## Requirements\n\n- C++ compiler (GCC 9.3.0 or newer recommended)\n- Support for C++14 standard\n- OS Windows 11 (24H2)\n\n## Installation\n\n1. Clone this repository to your local machine:\n\n   ```bash\n   git clone https://github.com/Squizly/Data-Structures-and-Algorithms.git\n   ```\n\n## Usage\n\nOnce compiled, you can run the executable files corresponding to each project or lab. For example:\n\n```bash\n./ASD_Lab1_sorting_algorithms/bin/sorting_algorithms\n```\n\n## Contributing\n\nContributions are welcome! If you would like to contribute to this project, please follow these steps:\n\n1. Fork the repository.\n2. Create a new branch: `git checkout -b feature/your-feature-name`.\n3. Make your changes and commit them: `git commit -m 'Add your feature description'`.\n4. Push your changes to your fork: `git push origin feature/your-feature-name`.\n5. Open a Pull Request to this repository.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsquizly%2Fdata-structures-and-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsquizly%2Fdata-structures-and-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsquizly%2Fdata-structures-and-algorithms/lists"}