{"id":20563330,"url":"https://github.com/siddhant-vij/concurrent-merge-sort","last_synced_at":"2026-05-06T03:31:58.379Z","repository":{"id":226099711,"uuid":"767015545","full_name":"siddhant-vij/Concurrent-Merge-Sort","owner":"siddhant-vij","description":"Merge sort using concurrency in multiple programming languages.","archived":false,"fork":false,"pushed_at":"2024-03-25T23:09:58.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-19T01:23:31.676Z","etag":null,"topics":["concurrency","cpp","go","java","merge-sort","multithreading","optimization","python"],"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/siddhant-vij.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-03-04T14:54:55.000Z","updated_at":"2024-11-21T09:48:56.000Z","dependencies_parsed_at":"2025-05-30T15:10:11.083Z","dependency_job_id":"e20079bf-cee8-48e8-80cd-6516f717cfb4","html_url":"https://github.com/siddhant-vij/Concurrent-Merge-Sort","commit_stats":null,"previous_names":["siddhant-vij/concurrent-merge-sort"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/siddhant-vij/Concurrent-Merge-Sort","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Merge-Sort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Merge-Sort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Merge-Sort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Merge-Sort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siddhant-vij","download_url":"https://codeload.github.com/siddhant-vij/Concurrent-Merge-Sort/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Merge-Sort/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32677914,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["concurrency","cpp","go","java","merge-sort","multithreading","optimization","python"],"created_at":"2024-11-16T04:17:40.631Z","updated_at":"2026-05-06T03:31:58.357Z","avatar_url":"https://github.com/siddhant-vij.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Concurrent Merge Sort\n\nDesigned to demonstrate the implementation and efficiency of the merge sort algorithm using concurrent programming techniques across Java, C++, Go, and Python.\n\u003cbr\u003e\n\u003cbr\u003e\nThis project aims to explore how concurrency can be utilized to speed up the sorting process, comparing the performance of concurrent and sequential approaches. Offers insights into different concurrency models and their application in a common algorithmic challenge.\n\n\u003cbr\u003e\n\n## Table of Contents\n\n1. [Features](#features)\n1. [Technical Scope](#technical-scope)\n1. [Installation and Usage](#installation-and-usage)\n1. [Contributing](#contributing)\n1. [License](#license)\n\n\u003cbr\u003e\n\n## Features\n\n- Implementation of the merge sort algorithm using threads or processes.\n- Option to sort arrays or lists of varying sizes and types.\n- Performance analysis comparing concurrent and sequential executions.\n- Multi-language support showcasing implementations in Java, C++, Go, and Python.\n\n\u003cbr\u003e\n\n## Technical Scope\n\n- **Java**: Using ForkJoinPool to parallelize the sorting task.\n- **C++**: Leveraging std::thread for multithreading the sorting process.\n- **Go**: Implementing goroutines and channels to sort in parallel.\n- **Python**: Utilizing concurrent.futures for threading or multiprocessing.\n\n\u003cbr\u003e\n\n## Installation and Usage\n\n1. **Clone the Repository**:\n    ```bash\n    git clone https://github.com/siddhant-vij/Concurrent-Merge-Sort.git\n    ```\n2. **Navigate to Language Directory**:\n    ```bash\n    cd Concurrent-Merge-Sort/[language]\n    ```\n3. **Install Dependencies**: Standard instructions to be followed for each language, if any external dependency.\n4. **Build and Run the Application**: Standard instructions to be followed for each language.\n\n\u003cbr\u003e\n\n## Contributing\n\nContributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. **Fork the Project**\n2. **Create your Feature Branch**: \n    ```bash\n    git checkout -b feature/AmazingFeature\n    ```\n3. **Commit your Changes**: \n    ```bash\n    git commit -m 'Add some AmazingFeature'\n    ```\n4. **Push to the Branch**: \n    ```bash\n    git push origin feature/AmazingFeature\n    ```\n5. **Open a Pull Request**\n\n\u003cbr\u003e\n\n## License\n\nDistributed under the MIT License. See [`LICENSE`](https://github.com/siddhant-vij/Concurrent-Merge-Sort/blob/main/LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhant-vij%2Fconcurrent-merge-sort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddhant-vij%2Fconcurrent-merge-sort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhant-vij%2Fconcurrent-merge-sort/lists"}