{"id":19602332,"url":"https://github.com/acodercat/cpp-algorithms","last_synced_at":"2025-08-10T16:09:03.687Z","repository":{"id":143870974,"uuid":"181441846","full_name":"acodercat/cpp-algorithms","owner":"acodercat","description":"C++ Algorithms","archived":false,"fork":false,"pushed_at":"2021-11-02T06:19:54.000Z","size":70,"stargazers_count":44,"open_issues_count":0,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-27T17:39:49.262Z","etag":null,"topics":[],"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/acodercat.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":"2019-04-15T08:11:59.000Z","updated_at":"2024-11-15T03:47:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"e0c94863-4b0d-4be6-9a10-4643c414a2c3","html_url":"https://github.com/acodercat/cpp-algorithms","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/acodercat/cpp-algorithms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acodercat%2Fcpp-algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acodercat%2Fcpp-algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acodercat%2Fcpp-algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acodercat%2Fcpp-algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/acodercat","download_url":"https://codeload.github.com/acodercat/cpp-algorithms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acodercat%2Fcpp-algorithms/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269748230,"owners_count":24469107,"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","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-11T09:23:35.146Z","updated_at":"2025-08-10T16:09:03.662Z","avatar_url":"https://github.com/acodercat.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# C++ Algorithms\n[![Build Status](https://travis-ci.org/acodercat/cpp-algorithms.svg?branch=master)](https://travis-ci.org/acodercat/cpp-algorithms)\n[![MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://github.com/acodercat/cpp-algorithms/blob/master/LICENSE)\n\nCommon data structures and algorithms are implemented using C++.\n\nSee the [examples](https://github.com/acodercat/cpp-algorithms/tree/master/src/examples) directory for more algorithm examples.\n\n### Algorithms\n\n| Name | Is Completed |\n|------|------|\n|[Linked List](https://github.com/acodercat/cpp-algorithms/blob/master/include/linked_list.h)| Y |\n|[Circular Queue](https://github.com/acodercat/cpp-algorithms/blob/master/include/circular_queue.h)| Y |\n|[Binary Heap](https://github.com/acodercat/cpp-algorithms/blob/master/include/binary_heap.h)| Y |\n|[Priority Queue](https://github.com/acodercat/cpp-algorithms/blob/master/include/priority_queue.h)| Y |\n|[Stack](https://github.com/acodercat/cpp-algorithms/blob/master/include/stack.h)| Y |\n|[Circular Linked List](https://github.com/acodercat/cpp-algorithms/blob/master/include/circular_linked_list.h)| Y |\n|[Linked List Queue](https://github.com/acodercat/cpp-algorithms/blob/master/include/linked_list_queue.h)| Y |\n|[Linked List Stack](https://github.com/acodercat/cpp-algorithms/blob/master/include/linked_list_stack.h)| Y |\n|[Binary Search Tree](https://github.com/acodercat/cpp-algorithms/blob/master/include/binary_search_tree.h)| Y |\n|[AVL Tree Map](https://github.com/acodercat/cpp-algorithms/blob/master/include/avl_tree_map.h)| Y |\n|[Red Black Tree](https://github.com/acodercat/cpp-algorithms/blob/master/include/red_black_tree.h)| Y |\n|[Segment Tree](https://github.com/acodercat/cpp-algorithms/blob/master/include/segment_tree.h)| Y |\n|[Trie Tree](https://github.com/acodercat/cpp-algorithms/blob/master/include/trie_tree.h)| Y |\n|[Union Find](https://github.com/acodercat/cpp-algorithms/blob/master/include/union_find.h)| Y |\n|[Hash Map](https://github.com/acodercat/cpp-algorithms/blob/master/include/hash_map.h)| Y |\n|[Linked List Map](https://github.com/acodercat/cpp-algorithms/blob/master/include/linked_list_map.h)| Y |\n|[Dense Weighted Graph](https://github.com/acodercat/cpp-algorithms/blob/master/include/dense_weighted_graph.h)| Y |\n|[Kd Tree](https://github.com/acodercat/cpp-algorithms/blob/master/include/kd_tree.h)| N |\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facodercat%2Fcpp-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Facodercat%2Fcpp-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facodercat%2Fcpp-algorithms/lists"}