{"id":34851202,"url":"https://github.com/researchlab/abp","last_synced_at":"2026-05-26T07:39:32.153Z","repository":{"id":81716130,"uuid":"152187833","full_name":"researchlab/abp","owner":"researchlab","description":"Algorithms Best Practices (ABP™)","archived":false,"fork":false,"pushed_at":"2022-02-16T07:17:34.000Z","size":316,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-27T04:16:14.582Z","etag":null,"topics":["algorithms","data-structures"],"latest_commit_sha":null,"homepage":"","language":"Go","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/researchlab.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,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2018-10-09T04:30:25.000Z","updated_at":"2022-02-16T07:17:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"e1c475ef-9663-4343-a2e2-0543e7f93e48","html_url":"https://github.com/researchlab/abp","commit_stats":null,"previous_names":["researchlab/algorithms-cs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/researchlab/abp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/researchlab%2Fabp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/researchlab%2Fabp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/researchlab%2Fabp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/researchlab%2Fabp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/researchlab","download_url":"https://codeload.github.com/researchlab/abp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/researchlab%2Fabp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33510127,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T03:12:49.672Z","status":"ssl_error","status_checked_at":"2026-05-26T03:12:47.976Z","response_time":63,"last_error":"SSL_read: 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","data-structures"],"created_at":"2025-12-25T19:18:06.950Z","updated_at":"2026-05-26T07:39:32.113Z","avatar_url":"https://github.com/researchlab.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Algorithms Best Practices (ABP™)\n\n\n### sorting\n| algorithms| en-wiki|zh-wiki|\n|---|---|---|\n| [BubbleSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/bubble)| [en-wiki](https://en.wikipedia.org/wiki/Bubble_sort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E5%86%92%E6%B3%A1%E6%8E%92%E5%BA%8F)|\n|[SelectionSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/selection)| [en-wiki](https://en.wikipedia.org/wiki/Selection_sort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E9%80%89%E6%8B%A9%E6%8E%92%E5%BA%8F)|\n|[InsertSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/insert)| [en-wiki](https://en.wikipedia.org/wiki/Insertion_sort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E6%8F%92%E5%85%A5%E6%8E%92%E5%BA%8F)|\n|[MergeSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/merge)| [en-wiki](https://en.wikipedia.org/wiki/Merge_sort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E5%BD%92%E5%B9%B6%E6%8E%92%E5%BA%8F)|\n|[QuickSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/quicksort)| [en-wiki](https://en.wikipedia.org/wiki/Quicksort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E5%BF%AB%E9%80%9F%E6%8E%92%E5%BA%8F)|\n|[HeapSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/heap)| [en-wiki](https://en.wikipedia.org/wiki/Heapsort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E5%A0%86%E6%8E%92%E5%BA%8F)|\n|[BucketSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/bucketsort)| [en-wiki](https://en.wikipedia.org/wiki/Bucket_sort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E6%A1%B6%E6%8E%92%E5%BA%8F)\n|[RadixSort](https://github.com/researchlab/algorithms-cs/tree/master/sorting/radixsort)| [en-wiki](https://en.wikipedia.org/wiki/Radix_sort) |[zh-wiki](https://zh.wikipedia.org/wiki/%E5%9F%BA%E6%95%B0%E6%8E%92%E5%BA%8F)|\n\n\n### Cache replacement policies\n  - theory: [Cache replacement policies](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU))\n  - algorithms:\n     - [lru/arc/2q](https://github.com/hashicorp/golang-lru)\n     - [lru from groupcache src](https://github.com/golang/groupcache)\n     - [lru/lfu/arc](https://github.com/bluele/gcache)\n     - [lfu](https://github.com/mtchavez/lfu)\n     - [lfu](https://github.com/dgrijalva/lfu-go)\n\t\t - [http://dhruvbird.com/lfu.pdf](http://dhruvbird.com/lfu.pdf)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresearchlab%2Fabp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fresearchlab%2Fabp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresearchlab%2Fabp/lists"}