{"id":13785318,"url":"https://github.com/edoriggio/algorithms-and-data-structures","last_synced_at":"2025-05-11T20:32:56.689Z","repository":{"id":112182941,"uuid":"255593633","full_name":"edoriggio/algorithms-and-data-structures","owner":"edoriggio","description":"Collection of algorithms and data structures","archived":false,"fork":false,"pushed_at":"2021-06-18T12:28:10.000Z","size":325,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-08-03T19:09:22.173Z","etag":null,"topics":["data-structures","python3","searching-algorithms","sorting-algorithms"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edoriggio.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}},"created_at":"2020-04-14T11:43:47.000Z","updated_at":"2021-06-18T12:30:30.000Z","dependencies_parsed_at":"2023-03-13T13:29:17.605Z","dependency_job_id":null,"html_url":"https://github.com/edoriggio/algorithms-and-data-structures","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoriggio%2Falgorithms-and-data-structures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoriggio%2Falgorithms-and-data-structures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoriggio%2Falgorithms-and-data-structures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edoriggio%2Falgorithms-and-data-structures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edoriggio","download_url":"https://codeload.github.com/edoriggio/algorithms-and-data-structures/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225094403,"owners_count":17419986,"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","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","python3","searching-algorithms","sorting-algorithms"],"created_at":"2024-08-03T19:00:59.126Z","updated_at":"2024-11-17T21:31:16.054Z","avatar_url":"https://github.com/edoriggio.png","language":"Python","funding_links":[],"categories":["Code"],"sub_categories":[],"readme":"# Algorithms and Data Structures\n\nSet of algorithms and data structures with exercises.\n\n## Index\n\n- Sorting - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/sorting)]\n    - Bubblesort - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/sorting/bubblesort.py)]\n    - Heapsort - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/sorting/heapsort.py)]\n    - Insertion sort - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/sorting/insertion_sort.py)]\n    - Merge sort - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/sorting/merge_sort.py)]\n    - Quick sort - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/sorting/quick_sort.py)]\n    - Selection sort - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/sorting/selection_sort.py)]\n\n- Data Structures - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/data_structures)]\n    - Binary heap - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/data_structures/binary_heap.py)]\n    - Binary search tree - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/bst.py)]\n    - Doubly linked list with sentinel - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/data_structures/linked_list.py)]\n    - Queue - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/data_structures/queue.py)]\n    - Stack - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/data_structures/stack.py)]\n\n- Searching - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/searching)]\n    - Binary search - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/searching/binary_search.py)]\n    - Linear search - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/searching/linear_search.py)]\n\n- Graphs - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/graphs)]\n    - BFS - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/graphs/bfs.py)]\n    - DFS - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/graphs/dfs.py)]\n\n- Dynamic Programming - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/dp)]\n    - Fibonacci - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/dp/fibonacci.py)]\n    - Knapsack - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/dp/knapsack.py)]\n    - Maximal Contiguous Sum - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/dp/maximal_contiguous_sum.py)]\n    - Minimal Contiguous Sum - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/dp/minimal_contiguous_sum.py)]\n\n- Misc - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/misc)]\n    - Reverse arrays - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/misc/reverse.py)]\n    - BST visualizer - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/misc/bst_visualizer.py)]\n    - Read directed graphs - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/misc/directed.py)]\n    - Read undirected graphs - [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/misc/undirected.py)]\n\n- Exercises [[navigate](https://github.com/edoriggio/algorithms-and-data-structures/tree/master/exercises)]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedoriggio%2Falgorithms-and-data-structures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedoriggio%2Falgorithms-and-data-structures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedoriggio%2Falgorithms-and-data-structures/lists"}