{"id":18419481,"url":"https://github.com/je-suis-tm/search-and-sort","last_synced_at":"2025-04-13T09:13:40.761Z","repository":{"id":59414216,"uuid":"128965558","full_name":"je-suis-tm/search-and-sort","owner":"je-suis-tm","description":"Julia and Python search algorithm implementation including Bloom Filter, Aho-Corasick, Boyer-Moore, Knuth-Morris-Pratt, Rabin-Karp, Binary \u0026 Sequential; hash algorithm implementation including Fowler-Noll-Vo-1, Jenkins One-at-a-time, Hash Chaining, Linear Probing \u0026 Quadratic Probing; sort algorithm implementation including Cocktail, Bitonic, Gnome, Bogo, Heap, Counting, Radix, Quick, Merge, Shell, Selection, Insertion, Bubble","archived":false,"fork":false,"pushed_at":"2022-07-21T19:36:33.000Z","size":209,"stargazers_count":18,"open_issues_count":0,"forks_count":8,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T09:13:36.537Z","etag":null,"topics":["aho-corasick","bitonic-sort","bogo-sort","boyer-moore","cocktail-sort","counting-sort","gnome-sort","heap-sort","insertion-sort","knuth-morris-pratt","learning-julia","merge-sort","quick-sort","rabin-karp","radix-sort","searching-algorithms","selection-sort","shaker-sort","shell-sort","sorting-algorithms"],"latest_commit_sha":null,"homepage":"","language":"Julia","has_issues":true,"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/je-suis-tm.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}},"created_at":"2018-04-10T16:43:28.000Z","updated_at":"2024-09-26T23:56:32.000Z","dependencies_parsed_at":"2022-09-16T01:25:22.469Z","dependency_job_id":null,"html_url":"https://github.com/je-suis-tm/search-and-sort","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/je-suis-tm%2Fsearch-and-sort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/je-suis-tm%2Fsearch-and-sort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/je-suis-tm%2Fsearch-and-sort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/je-suis-tm%2Fsearch-and-sort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/je-suis-tm","download_url":"https://codeload.github.com/je-suis-tm/search-and-sort/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248688552,"owners_count":21145766,"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":["aho-corasick","bitonic-sort","bogo-sort","boyer-moore","cocktail-sort","counting-sort","gnome-sort","heap-sort","insertion-sort","knuth-morris-pratt","learning-julia","merge-sort","quick-sort","rabin-karp","radix-sort","searching-algorithms","selection-sort","shaker-sort","shell-sort","sorting-algorithms"],"created_at":"2024-11-06T04:17:10.960Z","updated_at":"2025-04-13T09:13:40.733Z","avatar_url":"https://github.com/je-suis-tm.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Search and Sort Algorithm Implementation\n\nThis is a repository for algorithm learning. Hopefully it can help you along your way towards mastering algorithms. Please refer to \u003ca href=http://interactivepython.org/runestone/static/pythonds/index.html\u003einteractivepython\u003c/a\u003e for the details of search and sort algorithm in Python. Apart from Python, Julia version is also included.\n\n*Note that search and sort algorithms in Graph ADT, including Breath First Search, Depth First Search, A_Star Search and Topological Sort, are in a repository called \u003ca href=https://github.com/je-suis-tm/graph-theory\u003eGraph Theory\u003c/a\u003e.*\n\n### Search\n\n1. Sequential Search (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/sequential%20and%20binary%20search.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/sequential%20and%20binary%20search.py\u003ePython\u003c/a\u003e)\n\n2. Binary Search (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/sequential%20and%20binary%20search.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/sequential%20and%20binary%20search.py\u003ePython\u003c/a\u003e)\n\n3. Hash Search with Hash Chaining, Linear Probing \u0026 Quadratic Probing (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/hash%20search.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/hash%20search.py\u003ePython\u003c/a\u003e)\n\n4. Rabin-Karp Search (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/rabin%20karp%20search.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/rabin%20karp%20search.py\u003ePython\u003c/a\u003e)\n\n5. Bloom Filter Search with Fowler–Noll–Vo-1 Hash \u0026 Jenkins One-at-a-time Hash (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bloom%20filter.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bloom%20filter.py\u003ePython\u003c/a\u003e)\n\n6. Knuth-Morris-Pratt Search (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/knuth%20morris%20pratt%20search.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/knuth%20morris%20pratt%20search.py\u003ePython\u003c/a\u003e)\n\n7. Boyer–Moore Search (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/boyer%20moore%20search.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/boyer%20moore%20search.py\u003ePython\u003c/a\u003e)\n\n8. Aho–Corasick Search (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/aho%20corasick%20search.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/aho%20corasick%20search.py\u003ePython\u003c/a\u003e)\n\n### Sort\n\n1. Bubble Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bubble%2C%20selection%20and%20insertion%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bubble%2C%20selection%20and%20insertion%20sort.py\u003ePython\u003c/a\u003e)\n\n2. Selection Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bubble%2C%20selection%20and%20insertion%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bubble%2C%20selection%20and%20insertion%20sort.py\u003ePython\u003c/a\u003e)\n\n3. Insertion Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bubble%2C%20selection%20and%20insertion%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bubble%2C%20selection%20and%20insertion%20sort.py\u003ePython\u003c/a\u003e)\n\n4. Shell Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/shell%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/shell%20sort.py\u003ePython\u003c/a\u003e)\n\n5. Merge Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/merge%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/merge%20sort.py\u003ePython\u003c/a\u003e)\n\n6. Quick Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/quick%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/quick%20sort.py\u003ePython\u003c/a\u003e)\n\n7. Radix Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/radix%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/radix%20sort.py\u003ePython\u003c/a\u003e)\n\n8. Counting Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/counting%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/counting%20sort.py\u003ePython\u003c/a\u003e)\n\n9. Heap Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/heap%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/heap%20sort.py\u003ePython\u003c/a\u003e)\n\n10. Bogo Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bogo%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bogo%20sort.py\u003ePython\u003c/a\u003e)\n\n11. Gnome Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/gnome%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/gnome%20sort.py\u003ePython\u003c/a\u003e)\n\n12. Bitonic Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bitonic%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/bitonic%20sort.py\u003ePython\u003c/a\u003e)\n\n13. Shaker Sort (\u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/shaker%20sort.jl\u003eJulia\u003c/a\u003e, \u003ca href=https://github.com/je-suis-tm/search-and-sort/blob/master/shaker%20sort.py\u003ePython\u003c/a\u003e)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fje-suis-tm%2Fsearch-and-sort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fje-suis-tm%2Fsearch-and-sort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fje-suis-tm%2Fsearch-and-sort/lists"}