{"id":30210299,"url":"https://github.com/habedi/ordered","last_synced_at":"2025-08-13T20:02:56.670Z","repository":{"id":309422390,"uuid":"1029934306","full_name":"habedi/ordered","owner":"habedi","description":"A collection of useful data structures that keep data sorted by key","archived":false,"fork":false,"pushed_at":"2025-08-11T19:43:10.000Z","size":2784,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-11T21:11:51.987Z","etag":null,"topics":["data-structures","ordered-collections","zig","zig-library","zig-package","ziglang"],"latest_commit_sha":null,"homepage":"","language":"Zig","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/habedi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":["habedi"]}},"created_at":"2025-07-31T20:13:17.000Z","updated_at":"2025-08-11T19:37:35.000Z","dependencies_parsed_at":"2025-08-11T21:13:15.516Z","dependency_job_id":"5592b637-69b8-49e8-b181-52790444652e","html_url":"https://github.com/habedi/ordered","commit_stats":null,"previous_names":["habedi/ordered"],"tags_count":1,"template":false,"template_full_name":"habedi/template-zig-project","purl":"pkg:github/habedi/ordered","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/habedi%2Fordered","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/habedi%2Fordered/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/habedi%2Fordered/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/habedi%2Fordered/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/habedi","download_url":"https://codeload.github.com/habedi/ordered/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/habedi%2Fordered/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270304939,"owners_count":24562085,"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-13T02:00:09.904Z","response_time":66,"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":["data-structures","ordered-collections","zig","zig-library","zig-package","ziglang"],"created_at":"2025-08-13T20:01:26.933Z","updated_at":"2025-08-13T20:02:56.601Z","avatar_url":"https://github.com/habedi.png","language":"Zig","readme":"\u003cdiv align=\"center\"\u003e\n  \u003cpicture\u003e\n    \u003cimg alt=\"Ordered Logo\" src=\"logo.svg\" height=\"20%\" width=\"20%\"\u003e\n  \u003c/picture\u003e\n\u003cbr\u003e\n\n\u003ch2\u003eOrdered\u003c/h2\u003e\n\n[![Tests](https://img.shields.io/github/actions/workflow/status/habedi/ordered/tests.yml?label=tests\u0026style=flat\u0026labelColor=282c34\u0026logo=github)](https://github.com/habedi/ordered/actions/workflows/tests.yml)\n[![CodeFactor](https://img.shields.io/codefactor/grade/github/habedi/ordered?label=code%20quality\u0026style=flat\u0026labelColor=282c34\u0026logo=codefactor)](https://www.codefactor.io/repository/github/habedi/ordered)\n[![Zig Version](https://img.shields.io/badge/Zig-0.14.1-orange?logo=zig\u0026labelColor=282c34)](https://ziglang.org/download/)\n[![Docs](https://img.shields.io/github/v/tag/habedi/ordered?label=docs\u0026color=blue\u0026style=flat\u0026labelColor=282c34\u0026logo=read-the-docs)](https://habedi.github.io/ordered/)\n[![Release](https://img.shields.io/github/release/habedi/ordered.svg?label=release\u0026style=flat\u0026labelColor=282c34\u0026logo=github)](https://github.com/habedi/ordered/releases/latest)\n[![License](https://img.shields.io/badge/license-MIT-007ec6?label=license\u0026style=flat\u0026labelColor=282c34\u0026logo=open-source-initiative)](https://github.com/habedi/ordered/blob/main/LICENSE)\n\nA Zig library of common data structures that keep data in order\n\n\u003c/div\u003e\n\n---\n\nOrdered Zig library includes implementations of popular data structures including B-tree, skip list, trie, and\nred-black tree.\n\n### Features\n\n- Implementations for common data structures that maintain the order of keys:\n    - [`BTreeMap`](src/btree_map.zig): A balanced tree map that maintains order of keys.\n    - [`OrderedSet`](src/sorted_set.zig): A set with ordered elements.\n    - [`SkipList`](src/skip_list.zig): A probabilistic data structure that allows fast search, insertion, and deletion.\n    - [`Trie`](src/trie.zig): A prefix tree for fast retrieval of keys with common prefixes.\n    - [`RedBlackTree`](src/red_black_tree.zig): A self-balancing binary search tree that maintains order of keys.\n\n\u003e [!IMPORTANT]\n\u003e Zig-DbC is in early development, so bugs and breaking API changes are expected.\n\u003e Please use the [issues page](https://github.com/habedi/zig-dbc/issues) to report bugs or request features.\n\n---\n\n### Getting Started\n\nTo be added.\n\n---\n\n### Documentation\n\nYou can find the API documentation for the latest release of Ordered [here](https://habedi.github.io/ordered/).\n\nAlternatively, you can use the `make docs` command to generate the documentation for the current version of Ordered.\nThis will generate HTML documentation in the `docs/api` directory, which you can serve locally with `make serve-docs`\nand view in a web browser.\n\n### Examples\n\nCheck out the [examples](examples/) directory for example usages of Ordered.\n\n---\n\n### Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to make a contribution.\n\n### License\n\nOrdered is licensed under the MIT License (see [LICENSE](LICENSE)).\n\n### Acknowledgements\n\n* The logo is from [SVG Repo](https://www.svgrepo.com/svg/469537/zig-zag-left-right-arrow).\n","funding_links":["https://github.com/sponsors/habedi"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhabedi%2Fordered","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhabedi%2Fordered","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhabedi%2Fordered/lists"}