{"id":19593417,"url":"https://github.com/dimodimchev/struct-algo","last_synced_at":"2025-10-13T11:17:08.175Z","repository":{"id":259300780,"uuid":"385338082","full_name":"DimoDimchev/Struct-Algo","owner":"DimoDimchev","description":"A repository where I will upload different data structures and algorithms I explore","archived":false,"fork":false,"pushed_at":"2021-12-30T13:16:58.000Z","size":42,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-03T05:59:56.070Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DimoDimchev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-07-12T18:00:14.000Z","updated_at":"2021-12-30T13:17:01.000Z","dependencies_parsed_at":"2024-10-24T09:30:38.672Z","dependency_job_id":null,"html_url":"https://github.com/DimoDimchev/Struct-Algo","commit_stats":null,"previous_names":["dimodimchev/struct-algo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DimoDimchev/Struct-Algo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimoDimchev%2FStruct-Algo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimoDimchev%2FStruct-Algo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimoDimchev%2FStruct-Algo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimoDimchev%2FStruct-Algo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DimoDimchev","download_url":"https://codeload.github.com/DimoDimchev/Struct-Algo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimoDimchev%2FStruct-Algo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279014762,"owners_count":26085593,"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-13T02:00:06.723Z","response_time":61,"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":"2024-11-11T08:39:31.891Z","updated_at":"2025-10-13T11:17:08.158Z","avatar_url":"https://github.com/DimoDimchev.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Data structures \u0026 algorithms(Struct-Algo)\n\nA repository where I will upload implementations of various data structures and algorithms as I learn them.\nThe implementations may vary in language, some examples will be in C while others in C++, Python or others.\n\n## Contents\n\nThe documentation is split in two parts:\n\n- [Data structures](#data-structures)\n- [Algorithms](#algorithms)\n\n## Data structures\n\nThis section includes the following data structures:\n\n- Stack\n  - [Array implementation](https://github.com/DimoDimchev/Struct-Algo/blob/master/Stack/stack_array_implementation.c)\n  - [Linked list implementation](https://github.com/DimoDimchev/Struct-Algo/blob/master/Stack/stack_linked_list_implementation.c)\n- Linked list\n  - [Linked list with a recursive print method](https://github.com/DimoDimchev/Struct-Algo/blob/master/Linked%20List/linked_list_print_elements_recursion.c)\n  - [Linked list with method to insert node at n-th position](https://github.com/DimoDimchev/Struct-Algo/blob/master/Linked%20List/linked_list_insert_el_at_nth_position.c)\n  - [Linked list with method to insert node at beginning](https://github.com/DimoDimchev/Struct-Algo/blob/master/Linked%20List/linked_list_insert_el_at_beginning.c)\n  - [Linked list with iterative reverse method](https://github.com/DimoDimchev/Struct-Algo/blob/master/Linked%20List/linked_list_reverse_iterative_method.c)\n  - [Linked list with recursive reverse method](https://github.com/DimoDimchev/Struct-Algo/blob/master/Linked%20List/linked_list_reverse_recursively.c)\n  - [Doubly linked list](https://github.com/DimoDimchev/Struct-Algo/blob/master/Linked%20List/doubly_linked_list.c)\n  - [Linked list with method to delete node at n-th position](https://github.com/DimoDimchev/Struct-Algo/blob/master/Linked%20List/linked_list_remove_element_at_nth_position.c)\n- Trees\n  - [Binary search tree BFS traversal](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/binary_tree_breadth_first_traversal.cpp)\n  - [Binary search tree DFS traversal](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/binary_tree_depth_first_traversal.c)\n  - [Binary search tree with method to find the height of the tree](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/binary_tree_find_heigth.c)\n  - [Method to check if a tree is a binary search tree](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/check_if_binary_search_tree.c)\n  - [Binary search tree implementation](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/binary_search_tree.c)\n  - [Binary search tree with method to delete node](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/binary_search_tree_delete_node.c)\n  - [Binary search tree to find the minimum and maximum nodes recursively](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/binary_search_tree_find_min_max_recursively.c)\n  - [Binary search tree to find the inorder successor of a node](https://github.com/DimoDimchev/Struct-Algo/blob/master/Trees/binary_search_tree_inorder_successor.c)\n\n## Algorithms\n\n- Sorting algorithms\n  - [Insertion sort](https://github.com/DimoDimchev/Struct-Algo/blob/master/Sorting/insertion_sort.c)\n  - [Bubble sort](https://github.com/DimoDimchev/Struct-Algo/blob/master/Sorting/bubble_sort.c)\n  - [Selection sort](https://github.com/DimoDimchev/Struct-Algo/blob/master/Sorting/selection_sort.c)\n  - [Merge sort](https://github.com/DimoDimchev/Struct-Algo/blob/master/Sorting/merge_sort.c)\n  - [Quicksort](https://github.com/DimoDimchev/Struct-Algo/blob/master/Sorting/quicksort.cpp)\n- Search algorithms\n  - [Binary search](https://github.com/DimoDimchev/Struct-Algo/blob/master/Search/binary_search.c)\n  - [Jump search](https://github.com/DimoDimchev/Struct-Algo/blob/master/Search/jump_search.cpp)\n  - [Interpolation search](https://github.com/DimoDimchev/Struct-Algo/blob/master/Search/interpolation_search.c)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimodimchev%2Fstruct-algo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimodimchev%2Fstruct-algo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimodimchev%2Fstruct-algo/lists"}