{"id":31953376,"url":"https://github.com/chrismilson/sorting-visualiser","last_synced_at":"2025-10-14T13:46:50.639Z","repository":{"id":39169829,"uuid":"216440653","full_name":"chrismilson/sorting-visualiser","owner":"chrismilson","description":"A visualisation tool for some well known sorting algorithms.","archived":false,"fork":false,"pushed_at":"2023-01-06T02:56:31.000Z","size":15388,"stargazers_count":1,"open_issues_count":23,"forks_count":0,"subscribers_count":1,"default_branch":"typescript","last_synced_at":"2023-03-06T02:23:56.825Z","etag":null,"topics":["sorted-data","sorting-algorithm","visualisation"],"latest_commit_sha":null,"homepage":"https://shlappas.com/sorting-visualiser/","language":"TypeScript","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/chrismilson.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}},"created_at":"2019-10-20T23:22:07.000Z","updated_at":"2021-06-16T05:25:45.000Z","dependencies_parsed_at":"2023-02-05T04:01:49.004Z","dependency_job_id":null,"html_url":"https://github.com/chrismilson/sorting-visualiser","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/chrismilson/sorting-visualiser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismilson%2Fsorting-visualiser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismilson%2Fsorting-visualiser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismilson%2Fsorting-visualiser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismilson%2Fsorting-visualiser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrismilson","download_url":"https://codeload.github.com/chrismilson/sorting-visualiser/tar.gz/refs/heads/typescript","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrismilson%2Fsorting-visualiser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279018723,"owners_count":26086613,"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-14T02:00:06.444Z","response_time":60,"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":["sorted-data","sorting-algorithm","visualisation"],"created_at":"2025-10-14T13:46:43.067Z","updated_at":"2025-10-14T13:46:50.629Z","avatar_url":"https://github.com/chrismilson.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sorting Visualiser\n\nA simple visualisation tool for some well known sorting algorithms.\n\n## Usage\n\nWhen you load the page you will be presented with sorted data.\n\n![initial state](readme-assets/initial.png \"The first impression\")\n\nPressing play here will perform the currently selected sort (heapsort by\ndefault) on the already sorted data.\n\n![heapsort on sorted data](readme-assets/heapsort-on-sorted.gif \"Heapsort on sorted data\")\n\nThe data can be modified/unsorted by using the unsorting algorithms (in pink)\nmade visible by opening the extended menu (the button marked \u003ckbd\u003e⋮\u003c/kbd\u003e).\n\n![the extra menu](readme-assets/extra-menu.png \"The extra menu\")\n\nThe current sorting algorithm can also be set in this menu by pressing the blue\nbuttons.\n\nTry to modify the data in such a way that you get an idea for the algorithm. For\nexample, running timsort on reverse sorted data is very fast, but quicksort is\nvery slow!\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n      \u003cimg src=\"readme-assets/timsort-reversed.gif\" alt=\"timsort on reverse sorted data\" title=\"Timsort on reversed data\"\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\n      \u003cimg src=\"readme-assets/quicksort-reversed.gif\" alt=\"quicksort on reverse sorted data\" title=\"Quicksort on reversed data\"\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n  \n### Keyboard Shortcuts\n\nThere are some keyboard shortcuts for the experienced user:\n\n| Key | Action |\n|-|-|\n| \u003ckbd\u003eSpace\u003c/kbd\u003e | Play / Pause |\n| \u003ckbd\u003e→\u003c/kbd\u003e \\**when playing*\\* | Increase Animation Speed |\n| \u003ckbd\u003e←\u003c/kbd\u003e \\**when playing*\\* | Decrease Animation Speed |\n| \u003ckbd\u003e→\u003c/kbd\u003e \\**when paused*\\* | Next Move |\n| \u003ckbd\u003e←\u003c/kbd\u003e \\**when paused*\\* | Previous Move |\n| \u003ckbd\u003e↑\u003c/kbd\u003e | Increase Data Size |\n| \u003ckbd\u003e↓\u003c/kbd\u003e | Decrease Data Size |\n| \u003ckbd\u003er\u003c/kbd\u003e | Reset to initial unsorted state |\n| \u003ckbd\u003e`\u003c/kbd\u003e | Reverse Animation Direction |\n| \u003ckbd\u003eEsc\u003c/kbd\u003e | Open / Close Extended Menu |\n| \u003ckbd\u003es\u003c/kbd\u003e | Show / Hide Stats for Nerds |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrismilson%2Fsorting-visualiser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrismilson%2Fsorting-visualiser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrismilson%2Fsorting-visualiser/lists"}