Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hwholiday/algorithm_coding
推荐算法、相似度算法、布隆过滤器、均值算法、一致性Hash、数据结构、leetcode练习
https://github.com/hwholiday/algorithm_coding
algorithm-library bloom-filter golang leetcode leetcode-golang linked-list recommend similarity
Last synced: 3 months ago
JSON representation
推荐算法、相似度算法、布隆过滤器、均值算法、一致性Hash、数据结构、leetcode练习
- Host: GitHub
- URL: https://github.com/hwholiday/algorithm_coding
- Owner: hwholiday
- Created: 2019-08-13T07:33:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-08T02:18:42.000Z (about 4 years ago)
- Last Synced: 2024-10-12T04:07:58.669Z (3 months ago)
- Topics: algorithm-library, bloom-filter, golang, leetcode, leetcode-golang, linked-list, recommend, similarity
- Language: Go
- Homepage: https://www.hwholiday.com/
- Size: 5.69 MB
- Stars: 38
- Watchers: 3
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### average_code [计算平均值]可用于用户抢红包等
1: red_envelope_code [二倍均值法] 可用于用户抢红包等
### wheel_timer [时间轮]可用于定时任务
1: simple_timing_wheel [简单时间轮(Simple Timing Wheel)]
### bloom_filter_code [布隆过滤器]
1: bloom 布隆过滤器
### consistent_hash_code [一致性Hash算法]
1: consistent 一致性Hash算法
### leet_code [leet_code刷题]
1: leet_code刷题
### heap [堆]
1: max_heap_test 大顶推
2: min_heap_test 小顶堆### linked_list [链表]
1: cycle_list 循环链表
2: double_list 双向链表
3: single_list 单向链表
### recommend_code [推荐算法]
1: v1 基于用户的协同过滤算法[杰卡德相似度]
1: user_cf_by_cosine 基于用户的协同过滤算法[余弦夹角]### similarity_code [相似度算法]
1: jaccard 相似度计算之杰卡德相似度
2: cosine 相似度计算之余弦夹角