{"id":23486843,"url":"https://github.com/jadezdon/goalgo","last_synced_at":"2026-05-19T10:02:48.751Z","repository":{"id":223268455,"uuid":"379706617","full_name":"jadezdon/GoAlgo","owner":"jadezdon","description":"GoAlgo is an algorithm visualizer Android application","archived":false,"fork":false,"pushed_at":"2021-07-06T08:32:16.000Z","size":42682,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-25T23:37:35.953Z","etag":null,"topics":["algorithm","android","android-app","animation","visualization"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jadezdon.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}},"created_at":"2021-06-23T19:15:31.000Z","updated_at":"2025-06-20T15:29:12.000Z","dependencies_parsed_at":"2024-02-19T11:14:13.144Z","dependency_job_id":null,"html_url":"https://github.com/jadezdon/GoAlgo","commit_stats":null,"previous_names":["jadezdon/goalgo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jadezdon/GoAlgo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadezdon%2FGoAlgo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadezdon%2FGoAlgo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadezdon%2FGoAlgo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadezdon%2FGoAlgo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jadezdon","download_url":"https://codeload.github.com/jadezdon/GoAlgo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jadezdon%2FGoAlgo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272852284,"owners_count":25004054,"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-30T02:00:09.474Z","response_time":77,"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":["algorithm","android","android-app","animation","visualization"],"created_at":"2024-12-24T22:17:27.237Z","updated_at":"2026-05-19T10:02:43.730Z","avatar_url":"https://github.com/jadezdon.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoAlgo\nAn Android app for visualizing algorithms with animation.\n\n## [Algorithms](https://en.wikipedia.org/wiki/List_of_algorithms)\n\n- Graph search\n  - [x] [BFS](https://en.wikipedia.org/wiki/Breadth-first_search) \n  - [x] [DFS](https://en.wikipedia.org/wiki/Depth-first_search) \n  - [ ] A*\n  - [x] [Dijkstra's](https://en.wikipedia.org/wiki/Dijkstra's_algorithm) \n  - [ ] [Floyd-Warshall](https://en.wikipedia.org/wiki/Floyd%E2%80%93Warshall_algorithm) \n  - [ ] [Bellman-Ford](https://en.wikipedia.org/wiki/Bellman%E2%80%93Ford_algorithm) \n  \n- Sort\n  - [x] Bubble sort\n  - [x] Insertion sort\n  - [x] Merge sort\n  - [x] Quick sort\n  - [x] Selection sort\n  - [x] Shell sort\n  - [x] Cocktail shaker sort\n- [Maze generation](https://en.wikipedia.org/wiki/Maze_generation_algorithm)\n  - [x] Randomized DFS\n  - [x] Randomized Kruskal's\n  - [x] Randomized Prim's\n  - [x] Recursive division\n\n- [Root-finding](https://en.wikipedia.org/wiki/Root-finding_algorithms) (math)\n  - [x] [Secant method](https://en.wikipedia.org/wiki/Secant_method)\n  - [x] [Steffensen's method](https://en.wikipedia.org/wiki/Steffensen%27s_method)\n  - [x] [Inverse interpolation](https://en.wikipedia.org/wiki/Inverse_quadratic_interpolation)\n\n\n\n## Screenshots\n\n### Graph search\n\n#### Breadth-first search (BFS)\n\n\u003cimg src=\"screenshots/BFS.gif\" alt=\"BFS\" style=\"width:40%;\" /\u003e\n\n#### Depth-first search (DFS)\n\n\u003cimg src=\"screenshots/DFS.gif\" style=\"width:40%;\" /\u003e\n\n#### Dijkstra's algorithm\n\n\u003cimg src=\"screenshots/Dijkstras.gif\" style=\"width:40%;\" /\u003e\n\n\n\n### Sorting algorithms\n\n#### Quick sort\n\u003cimg src=\"screenshots/quicksort.gif\" style=\"width:40%;\" /\u003e\n\n#### Bubble sort\n\n\u003cimg src=\"screenshots/bubblesort.gif\" style=\"width:40%;\" /\u003e\n\n#### Insertion sort\n\n\u003cimg src=\"screenshots/insertionsort.gif\" style=\"width:40%;\" /\u003e\n\n#### Selection sort\n\n\u003cimg src=\"screenshots/selectionsort.gif\" style=\"width:40%;\" /\u003e\n\n#### Merge sort\n\n\u003cimg src=\"screenshots/mergesort.gif\" style=\"width:40%;\" /\u003e\n\n#### Shell sort\n\n\u003cimg src=\"screenshots/shellsort.gif\" style=\"width:40%;\" /\u003e\n\n#### Cocktail shaker sort\n\n\u003cimg src=\"screenshots/cocktail_shaker_sort.gif\" style=\"width:40%;\" /\u003e\n\n\n\n### Maze generation\n\n#### Randomized DFS\n\n\u003cimg src=\"screenshots/randomized_DFS.gif\" style=\"width:40%;\" /\u003e\n\n#### Randomized Kruskal's\n\n\u003cimg src=\"screenshots/randomized_kruskals.gif\" style=\"width:40%;\" /\u003e\n\n#### Randomized Prim's\n\n\u003cimg src=\"screenshots/randomized_prims.gif\" style=\"width:40%;\" /\u003e\n\n#### Recursive division\n\n\u003cimg src=\"screenshots/recursive_division.gif\" style=\"width:40%;\" /\u003e\n\n### Root-finding (math)\n\n#### Secant method\n\n\u003cimg src=\"screenshots/secant_method.gif\" style=\"width:40%;\" /\u003e\n\n#### Steffensen's method\n\n\u003cimg src=\"screenshots/steffensens_method.gif\" style=\"width:40%;\" /\u003e\n\n#### Inverse quadratic interpolation\n\n\u003cimg src=\"screenshots/inverse_interpolation.gif\" style=\"width:40%;\" /\u003e\n\n### All view is responsive, and customizable (change animation speed, change color)\n\n\u003cimg src=\"screenshots/graph_landscape.jpg\" style=\"width:40%;\" /\u003e\n\n\u003cimg src=\"screenshots/sort_landscape.jpg\" style=\"width:40%;\" /\u003e\n\n\u003cimg src=\"screenshots/maze_landscape.jpg\" style=\"width:40%;\"/\u003e\n\n\u003cimg src=\"screenshots/root_finding_landscape.jpg\" style=\"width:40%;\" /\u003e\n\n\n\u003cimg src=\"screenshots/graph_config.jpg\" style=\"width:40%;\" /\u003e\n\n\u003cimg src=\"screenshots/sort_config.jpg\" style=\"width:40%;\" /\u003e\n\n\u003cimg src=\"screenshots/maze_config.jpg\" style=\"width:40%;\" /\u003e\n\n\u003cimg src=\"screenshots/root_finding_config.jpg\" style=\"width:40%;\" /\u003e\n\n## Credits\n\n- \u003cdiv\u003eIcons made by \u003ca href=\"https://www.freepik.com\" title=\"Freepik\"\u003eFreepik\u003c/a\u003e from \u003ca href=\"https://www.flaticon.com/\" title=\"Flaticon\"\u003ewww.flaticon.com\u003c/a\u003e\u003c/div\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjadezdon%2Fgoalgo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjadezdon%2Fgoalgo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjadezdon%2Fgoalgo/lists"}