{"id":18837784,"url":"https://github.com/liyangsir/data-structures-and-algorithms","last_synced_at":"2026-01-28T06:30:14.729Z","repository":{"id":161371054,"uuid":"240413450","full_name":"LiYangSir/Data-Structures-and-Algorithms","owner":"LiYangSir","description":"数据结构与算法","archived":false,"fork":false,"pushed_at":"2022-04-08T08:39:16.000Z","size":193,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-12-30T08:43:03.325Z","etag":null,"topics":["avl-tree","bst","bst-tree","data-structures-and-algorithms","hashtable","linkedlist","maxheap","redblacktree","segmenttree","stack","trie","unionfind"],"latest_commit_sha":null,"homepage":null,"language":"Java","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/LiYangSir.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,"publiccode":null,"codemeta":null}},"created_at":"2020-02-14T02:38:32.000Z","updated_at":"2024-04-14T14:27:15.000Z","dependencies_parsed_at":"2023-05-19T00:45:23.276Z","dependency_job_id":null,"html_url":"https://github.com/LiYangSir/Data-Structures-and-Algorithms","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiYangSir%2FData-Structures-and-Algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiYangSir%2FData-Structures-and-Algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiYangSir%2FData-Structures-and-Algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LiYangSir%2FData-Structures-and-Algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LiYangSir","download_url":"https://codeload.github.com/LiYangSir/Data-Structures-and-Algorithms/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239774324,"owners_count":19694700,"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":["avl-tree","bst","bst-tree","data-structures-and-algorithms","hashtable","linkedlist","maxheap","redblacktree","segmenttree","stack","trie","unionfind"],"created_at":"2024-11-08T02:36:25.142Z","updated_at":"2026-01-28T06:30:14.686Z","avatar_url":"https://github.com/LiYangSir.png","language":"Java","readme":"\u003ch1 align=\"center\" style=\"color:Aqua\"\u003eData-Structures-and-Algorithms\u003c/h1\u003e\n\n \u003e数据结构与算法是一门计算机领域的必修课程，希望给学习的小伙伴提供源码的帮助\n\n\u003cdiv align=\"center\"\u003e\n\u003cimage src=\"https://markdown-liyang.oss-cn-beijing.aliyuncs.com/label/Github-LiYangSir-brightgreen.svg\"\u003e\n\u003cimage src=\"https://markdown-liyang.oss-cn-beijing.aliyuncs.com/label/quguai.cn-green.svg\"\u003e\n\u003cimage src=\"https://markdown-liyang.oss-cn-beijing.aliyuncs.com/label/Language-Java-orange.svg\"\u003e\n\u003cimage src=\"https://markdown-liyang.oss-cn-beijing.aliyuncs.com/label/Version-1.0-blue.svg\"\u003e\n\u003c/div\u003e\n\n------\n\n### 简介\n\n\u0026emsp;\u0026emsp;数据结构与算法不仅强调的是数据结构，而且还强调算法。两者是相辅相成的结果，只有了解了数据结构才能写出更加优秀的算法，优秀的算法定要依靠更优化的数据结构。\n\n\u003e [个人主页](http://quguai.cn) \u0026emsp;|\u0026emsp; [CSDN](https://me.csdn.net/qq_41503660) \u0026emsp;|\u0026emsp; [博客园](https://www.cnblogs.com/teaurn/)\n\n### 开始使用\n\n\u0026emsp;\u0026emsp;本文主要包含动态数组(Array)、 栈(Stack)、 队列(Queue)、 优先队列(PriorityQueue)、 链表(LinkedList)、 二分搜索树(BST)、集合(Set)、映射(Map)、  最大堆(MaxHeap)、 线段树(SegmentTree)、字典树(Trie)、 并查集(UnionFind)、 AVL树、 红黑树(RedBlackTree)、 哈希表(HashTable)等以上数据结构。 \n\n\u0026emsp;\u0026emsp;由于文章内容有限，所以每个结构的详细内容分开编写，下面给出了每个数据结构的链接，具体的说明文件在每个结构的文件夹内部的README.md文件中。\n\n### 各数据结构详细内容链接\n\n + 动态数组 : [Array/README.md](Array)\n\n + 栈：[Stack/README.md](Stack)\n\n + 队列：[Queue/README.md](Queue)\n\n + 链表：[LinkedList/README.md](LinkedList)\n\n + 二分搜索树：[BST/README.md](BST)\n\n + 集合：[Set/README.md](Set)\n\n + 映射：[Map/README.md](Map)\n\n + 最大堆[MaxHeap/README.md](MaxHeap)\n\n + 优先队列：[MaxHeap/README.md](MaxHeap)\n\n + 线段树：[SegmentTree/README.md](SegmentTree)\n\n + Trie 字典树：[Trie/README.md](Trie)\n\n + 并查集：[UnionFind/README.md](UnionFind)\n\n + AVL 树：[AVLTree/README.md](AVLTree)\n\n + 红黑树：[RedBlackTree/README.md](RedBlackTree)\n\n + 哈希表：[HashTable/README.md](HashTable)\n\n\n### 捐赠\n如果您觉得文章对您有所帮助，可以请作者喝☕。\n\n|支付宝/微信/QQ|\n|-------------|\n|![二维码](https://markdown-liyang.oss-cn-beijing.aliyuncs.com/Pay.JPG)|","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliyangsir%2Fdata-structures-and-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliyangsir%2Fdata-structures-and-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliyangsir%2Fdata-structures-and-algorithms/lists"}