{"id":15039400,"url":"https://github.com/xpoet/js-data-structure-and-algorithm","last_synced_at":"2025-04-08T09:08:43.929Z","repository":{"id":39162012,"uuid":"282102950","full_name":"XPoet/js-data-structure-and-algorithm","owner":"XPoet","description":"从 0 到 1 学习 JavaScript 数据结构与算法","archived":false,"fork":false,"pushed_at":"2024-05-27T03:40:07.000Z","size":4161,"stargazers_count":1530,"open_issues_count":1,"forks_count":290,"subscribers_count":44,"default_branch":"master","last_synced_at":"2025-04-08T09:08:21.668Z","etag":null,"topics":["data-structure-and-algorithm","javascript"],"latest_commit_sha":null,"homepage":"https://data-structure-and-algorithm.xpoet.cn","language":"JavaScript","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/XPoet.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-07-24T02:26:43.000Z","updated_at":"2025-04-03T08:30:09.000Z","dependencies_parsed_at":"2024-01-14T03:45:36.910Z","dependency_job_id":"6c272500-85ff-484c-9491-c0af9053d26f","html_url":"https://github.com/XPoet/js-data-structure-and-algorithm","commit_stats":null,"previous_names":["xpoet/js-data-structure-and-algorithm","xpoet/js-data-structures-and-algorithms"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XPoet%2Fjs-data-structure-and-algorithm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XPoet%2Fjs-data-structure-and-algorithm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XPoet%2Fjs-data-structure-and-algorithm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XPoet%2Fjs-data-structure-and-algorithm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/XPoet","download_url":"https://codeload.github.com/XPoet/js-data-structure-and-algorithm/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247809962,"owners_count":20999816,"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":["data-structure-and-algorithm","javascript"],"created_at":"2024-09-24T20:42:41.907Z","updated_at":"2025-04-08T09:08:43.909Z","avatar_url":"https://github.com/XPoet.png","language":"JavaScript","readme":"# JavaScript 数据结构与算法\n\n本仓库的[文档](https://data-structure-and-algorithm.xpoet.cn)根据哔哩哔哩[《JavaScript 数据结构与算法》](https://www.bilibili.com/video/BV1x7411L7Q7)视频内容整理而成的学习笔记，视频教程讲得特别好，配合本仓库的文档和测试代码，学习效果更佳。\n\n推荐大家按照目录结构的顺序来学习，由浅入深，循序渐进，轻松搞定数据结构和算法。\n\n## 在线预览\n\n**https://data-structure-and-algorithm.xpoet.cn**\n\n## 学习交流\n\n作者组建了学习氛围特别好的前端技术交流群，欢迎同学们一起来交流吐槽。由于群人数较多，需要添加作者才能邀请进群。\n\n\u003e 添加微信时请备注来意，以便可以及时处理。\n\n![image](https://xpoet.cn/images/fp/fp-slogan.webp)\n\n## 数据结构\n\n- [数组](https://data-structure-and-algorithm.xpoet.cn/data-structure/Array.html)\n- [栈](https://data-structure-and-algorithm.xpoet.cn/data-structure/Stack.html)\n- [队列](https://data-structure-and-algorithm.xpoet.cn/data-structure/Queue.html)\n- [优先队列](https://data-structure-and-algorithm.xpoet.cn/data-structure/PriorityQueue.html)\n- [单向链表](https://data-structure-and-algorithm.xpoet.cn/data-structure/LinkedList.html)\n- [双向链表](https://data-structure-and-algorithm.xpoet.cn/data-structure/DoubleLinkedList.html)\n- [集合](https://data-structure-and-algorithm.xpoet.cn/data-structure/Set.html)\n- [字典](https://data-structure-and-algorithm.xpoet.cn/data-structure/Map.html)\n- [哈希表](https://data-structure-and-algorithm.xpoet.cn/data-structure/HashTable.html)\n- [树](https://data-structure-and-algorithm.xpoet.cn/data-structure/Tree.html)\n- [二叉树](https://data-structure-and-algorithm.xpoet.cn/data-structure/BinaryTree.html)\n- [二叉搜索树](https://data-structure-and-algorithm.xpoet.cn/data-structure/BinarySearchTree.html)\n- [图](https://data-structure-and-algorithm.xpoet.cn/data-structure/Graph.html)\n\n## 算法\n\n- [排序算法](https://data-structure-and-algorithm.xpoet.cn/algorithm/sort.html)\n- [搜索算法](https://data-structure-and-algorithm.xpoet.cn/algorithm/search.html)\n- [算法设计思想](https://data-structure-and-algorithm.xpoet.cn/algorithm/idea.html)\n- [经典算法题](https://data-structure-and-algorithm.xpoet.cn/algorithm/classic.html)\n\n## 测试代码\n\n数据结构的测试代码存放在 [src/docs/public/ data-structure](https://github.com/XPoet/js-data-structure-and-algorithm/tree/master/src/docs/public/data-structure) 目录。\n\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxpoet%2Fjs-data-structure-and-algorithm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxpoet%2Fjs-data-structure-and-algorithm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxpoet%2Fjs-data-structure-and-algorithm/lists"}