{"id":24309623,"url":"https://github.com/nelsonbn/algorithms-data-structures","last_synced_at":"2026-02-07T12:31:19.520Z","repository":{"id":205659521,"uuid":"714705516","full_name":"NelsonBN/algorithms-data-structures","owner":"NelsonBN","description":"Algorithms \u0026 Data Structures","archived":false,"fork":false,"pushed_at":"2025-04-21T20:53:56.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-29T04:32:31.961Z","etag":null,"topics":["algorithms","algorithms-and-data-structures","data-structures"],"latest_commit_sha":null,"homepage":"","language":null,"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/NelsonBN.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":"2023-11-05T16:33:05.000Z","updated_at":"2025-04-21T20:54:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"7cf02ee0-670d-41f2-ae22-f0e5e64797e8","html_url":"https://github.com/NelsonBN/algorithms-data-structures","commit_stats":null,"previous_names":["nelsonbn/algorithms-data-structures"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/NelsonBN/algorithms-data-structures","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NelsonBN%2Falgorithms-data-structures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NelsonBN%2Falgorithms-data-structures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NelsonBN%2Falgorithms-data-structures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NelsonBN%2Falgorithms-data-structures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NelsonBN","download_url":"https://codeload.github.com/NelsonBN/algorithms-data-structures/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NelsonBN%2Falgorithms-data-structures/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29194019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["algorithms","algorithms-and-data-structures","data-structures"],"created_at":"2025-01-17T05:16:00.995Z","updated_at":"2026-02-07T12:31:19.515Z","avatar_url":"https://github.com/NelsonBN.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Algorithms \u0026 Data Structures\n\nThis repository will contain implementations of various algorithms and data structures in several languages.\nThe idea is to have a source of reference for the most common algorithms and data structures, so that we can study and learn from them from theory to practice.\n\n\n## Fundamental Data Structures\n\n- [Linked list](https://github.com/NelsonBN/algorithms-data-structures-linked-list)\n- [Hash table](https://github.com/NelsonBN/algorithms-data-structures-hashtable)\n- [Stack](https://github.com/NelsonBN/algorithms-data-structures-stack)\n- [Queue](https://github.com/NelsonBN/algorithms-data-structures-queue)\n- [Skip list](https://github.com/NelsonBN/algorithms-data-structures-skip-list)\n\n\n\n## Techniques\n- [Recursion](https://github.com/NelsonBN/algorithms-data-structures-recursion)\n\n\n\n## Sorting Algorithms\n\n- [Bubble sort](https://github.com/NelsonBN/algorithms-data-structures-bubble-sort)\n- [Insertion sort](https://github.com/NelsonBN/algorithms-data-structures-insertion-sort)\n- [Selection sort](https://github.com/NelsonBN/algorithms-data-structures-selection-sort)\n- [Heap sort](https://github.com/NelsonBN/algorithms-data-structures-heap-sort)\n- [Merge sort](https://github.com/NelsonBN/algorithms-data-structures-merge-sort)\n- [Shell sort](https://github.com/NelsonBN/algorithms-data-structures-shell-sort)\n- [Quick sort](https://github.com/NelsonBN/algorithms-data-structures-quick-sort)\n- [Stable vs Unstable sorting algorithms](https://github.com/NelsonBN/algorithms-data-structures-stable-vs-unstable-sort-algos)\n\n\n\n## Trees\n\n- [Trie](https://github.com/NelsonBN/algorithms-data-structures-trie)\n- [Binary Search Tree (BST)](https://github.com/NelsonBN/algorithms-data-structures-binary-search-tree)\n- [Binary Heap](https://github.com/NelsonBN/algorithms-data-structures-binary-heap)\n\n\n\n## Graphs\n- [Graphs Representation](https://github.com/NelsonBN/algorithms-data-structures-graphs-representation)\n- [Graphs Traversal](https://github.com/NelsonBN/algorithms-data-structures-graph-traversal)\n\n### SSSP (Single Source Shortest Path)\n- [Dijkstra](https://github.com/NelsonBN/algorithms-data-structures-dijkstra)\n- [Bellman-Ford](https://github.com/NelsonBN/algorithms-data-structures-bellman-ford)\n\n### Finding Paths\n- [A-star (A*)](https://github.com/NelsonBN/algorithms-data-structures-a-star)\n\n### Topological Sort\n- [Topological Sort with DFS](https://github.com/NelsonBN/algorithms-data-structures-topological-sorting-dfs)\n- [Kahn](https://github.com/NelsonBN/algorithms-data-structures-kahn)\n\n### MST (Minimum Spanning Tree)\n- [Kruskal](https://github.com/NelsonBN/algorithms-data-structures-kruskal)\n- [Prim](https://github.com/NelsonBN/algorithms-data-structures-prim)\n\n\n## Other Algorithms\n\n- [Binary search](https://github.com/NelsonBN/algorithms-data-structures-binary-search)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnelsonbn%2Falgorithms-data-structures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnelsonbn%2Falgorithms-data-structures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnelsonbn%2Falgorithms-data-structures/lists"}