{"id":28290779,"url":"https://github.com/praisetompane/algorithms_and_data_structures","last_synced_at":"2025-10-10T07:38:34.636Z","repository":{"id":268941372,"uuid":"905939588","full_name":"praisetompane/algorithms_and_data_structures","owner":"praisetompane","description":"A toy implementation of foundational data structures and algorithms at a lower level of the stack.","archived":false,"fork":false,"pushed_at":"2025-08-31T10:08:31.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-31T11:37:59.880Z","etag":null,"topics":["algorithms","c","data-structures"],"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/praisetompane.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-19T20:18:10.000Z","updated_at":"2025-08-31T10:08:48.000Z","dependencies_parsed_at":"2024-12-19T21:24:31.466Z","dependency_job_id":"16728c03-f8b2-487f-9c57-8f32a7f343da","html_url":"https://github.com/praisetompane/algorithms_and_data_structures","commit_stats":null,"previous_names":["praisetompane-toy-applications/algorithms_and_data_structures","praise-toy-applications/algorithms_and_data_structures","praisetompane/algorithms_and_data_structures","praisetompane/data_structures"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/praisetompane/algorithms_and_data_structures","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praisetompane%2Falgorithms_and_data_structures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praisetompane%2Falgorithms_and_data_structures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praisetompane%2Falgorithms_and_data_structures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praisetompane%2Falgorithms_and_data_structures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/praisetompane","download_url":"https://codeload.github.com/praisetompane/algorithms_and_data_structures/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praisetompane%2Falgorithms_and_data_structures/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003185,"owners_count":26083533,"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-10-10T02:00:06.843Z","response_time":62,"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":["algorithms","c","data-structures"],"created_at":"2025-05-22T03:12:25.448Z","updated_at":"2025-10-10T07:38:34.630Z","avatar_url":"https://github.com/praisetompane.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# algorithms_and_data_structures\n![build status](https://github.com/praisetompane/algorithms_and_data_structures/actions/workflows/algorithms_and_data_structures.yaml/badge.svg)\n\n## Objectives\n- A toy implementation of foundational data structures and algorithms at a lower level of the stack.\n\n\n## Project Structure\n- docs: Project documentation lives in here.\n- src: Each data structure is an independent module.\n\n## [Theory](https://github.com/praisetompane/computation_and_information/tree/main/0_theory_of_computation/4_design_and_analysis_of_algorithms/0_data_structures_design_and_analysis)\n\n## Dependencies\n- [Docker](https://docs.docker.com/get-started/)\n\n## Setup Instructions\n- The repository is configured to use [devcontainers](https://containers.dev) for development.\n    - [Developing inside a Container](https://code.visualstudio.com/docs/devcontainers/containers)\n\n\n## Installation\n\n#### Clone Repository\n```shell\ngit clone git@github.com:praisetompane/algorithms_and_data_structures.git\n```\n\n#### Build\n```shell\nmake build\n```\n\n#### Test\n```shell\nmake test\n```\n\n#### Install\n```\nsudo make install\n```\n\n#### Uninstall\n```\nsudo make uninstall\n```\n\n\n## Usage\n```C\n#include \"array.h\"\n#include \u003cstdio.h\u003e\n\nint main()\n{\n    printf(\"Test creating, adding and reading from Integer Array\\n\");\n    Array numbers = array(INT, 10);\n\n    int number = 2;\n    add(\u0026numbers, 0, \u0026number);\n\n    int read_int;\n    read(\u0026numbers, 0, \u0026read_int);\n    printf(\"\\n\");\n}\n```\n\n## Git Conventions\n- **NB:** the master is locked and all changes must come through a Pull Request.\n- commit messages:\n    - provide concise commit messages that describe what you have done.\n        ```shell\n        # example:\n        git commit -m \"feat(core): algorithm\" -m\"implement my new shiny faster algorithm\"\n        ```\n    - screen shot of Githb view\n    - references:\n        - https://www.conventionalcommits.org/en/v1.0.0/\n        - https://www.freecodecamp.org/news/how-to-write-better-git-commit-messages/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpraisetompane%2Falgorithms_and_data_structures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpraisetompane%2Falgorithms_and_data_structures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpraisetompane%2Falgorithms_and_data_structures/lists"}