{"id":36577526,"url":"https://github.com/xiaomeng79/go-algorithm","last_synced_at":"2026-01-12T07:37:47.670Z","repository":{"id":52444418,"uuid":"139554682","full_name":"xiaomeng79/go-algorithm","owner":"xiaomeng79","description":"go数据结构和算法","archived":false,"fork":false,"pushed_at":"2025-05-08T23:55:11.000Z","size":3846,"stargazers_count":60,"open_issues_count":0,"forks_count":20,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-09T00:29:13.441Z","etag":null,"topics":["algorithms","algorithms-and-data-structures","data-structures","data-structures-and-algorithms","go","golang","sorting-algorithms"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xiaomeng79.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-07-03T08:46:41.000Z","updated_at":"2025-05-08T23:55:14.000Z","dependencies_parsed_at":"2022-09-15T23:00:36.186Z","dependency_job_id":null,"html_url":"https://github.com/xiaomeng79/go-algorithm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/xiaomeng79/go-algorithm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomeng79%2Fgo-algorithm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomeng79%2Fgo-algorithm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomeng79%2Fgo-algorithm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomeng79%2Fgo-algorithm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xiaomeng79","download_url":"https://codeload.github.com/xiaomeng79/go-algorithm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xiaomeng79%2Fgo-algorithm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28336604,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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","algorithms-and-data-structures","data-structures","data-structures-and-algorithms","go","golang","sorting-algorithms"],"created_at":"2026-01-12T07:37:47.595Z","updated_at":"2026-01-12T07:37:47.664Z","avatar_url":"https://github.com/xiaomeng79.png","language":"Go","readme":"## go 数据结构和算法 \n\n[![Build Status](https://travis-ci.org/xiaomeng79/go-algorithm.svg?branch=master)](https://travis-ci.org/xiaomeng79/go-algorithm) [![codecov](https://codecov.io/gh/xiaomeng79/go-algorithm/branch/master/graph/badge.svg)](https://codecov.io/gh/xiaomeng79/go-algorithm)\n[![GitHub license](https://img.shields.io/github/license/xiaomeng79/go-algorithm.svg)](https://github.com/xiaomeng79/go-algorithm/blob/master/LICENSE)\n\n\n### 数据结构\n\n[数据结构概念](./data-structures/README.md)\n\n[二叉树](./data-structures/binaryTree)\n\n[图](./data-structures/graph)\n\n[堆](./data-structures/heap)\n\n[优先队列](./data-structures/priority_queue)\n\n[队列](./data-structures/queue)\n\n[栈](./data-structures/stack)\n\n[位图](./data-structures/bitmap)\n\n\n### 算法\n\n#### 图\n\n[深度优先](./algorithms/graphs/dfs)\n\n[广度优先](./algorithms/graphs/bfs)\n\n[最短路径bfs](./algorithms/graphs/bfs-shortest-path)\n\n[迪杰斯特拉](./algorithms/graphs/dijkstra)\n\n[拓扑算法](./algorithms/graphs/topological)\n\n#### 排序\n\n[概念](./algorithms/sort/README.md)\n\n[冒泡排序](./algorithms/sort/bubble)\n\n[插入排序](./algorithms/sort/insertion)\n\n[选择排序](./algorithms/sort/selection)\n\n[快速排序](./algorithms/sort/quick)\n\n[希尔排序](./algorithms/sort/shell)\n\n[归并排序](./algorithms/sort/merge)\n\n[堆排序](./algorithms/sort/heap)\n\n[桶排序](./algorithms/sort/bucket)\n\n### 训练\n\n#### String\n- 字符串反转\n\n\n#### 参考资料\n\n##### 博客资料\n\n[c/c++/java详细讲解](http://wangkuiwu.github.io/2013/01/01/datastruct-index/)\n\n[c语言详细](https://www.cnblogs.com/ciyeer/category/1214864.html)\n\n[c语言详细](http://data.biancheng.net/)\n\n##### git资料\n\n[数据结构和算法全面](https://github.com/arnauddri/algorithms)\n\n[0xAX](https://github.com/0xAX/go-algorithms)\n\n[floyernick](https://github.com/floyernick/Data-Structures-and-Algorithms)\n\n[skybebe](https://github.com/skybebe/Algorithms-Learning-With-Go)\n\n[TheAlgorithms](https://github.com/TheAlgorithms/Go)\n\n[js排序](https://github.com/hustcc/JS-Sorting-Algorithm)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxiaomeng79%2Fgo-algorithm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxiaomeng79%2Fgo-algorithm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxiaomeng79%2Fgo-algorithm/lists"}