{"id":19569582,"url":"https://github.com/wangy8961/python3-algorithms","last_synced_at":"2025-04-27T03:30:51.483Z","repository":{"id":49378111,"uuid":"146839171","full_name":"wangy8961/python3-algorithms","owner":"wangy8961","description":"Python3 数据结构与算法的介绍及应用。1. 数据结构：数组、链表、栈、队列、树、堆、图； 2. 典型排序算法：冒泡排序、选择排序、插入排序、希尔排序、堆排序、归并排序、快速排序、桶排序、计数排序、基数排序； 3. 查找算法： 顺序查找、二分查找、哈希表查找、二叉查找树、平衡二叉查找树(AVL树、红黑树)、平衡多路查找树(B树、B+树)；4. LeetCode 和《剑指Offer》刷题、多种方法的题解","archived":false,"fork":false,"pushed_at":"2021-03-24T08:35:19.000Z","size":180,"stargazers_count":95,"open_issues_count":0,"forks_count":48,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-04T20:36:20.916Z","etag":null,"topics":["algorithm","leetcode","python3","searching-algorithms","sorting-algorithms"],"latest_commit_sha":null,"homepage":"https://madmalls.com","language":"Python","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/wangy8961.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}},"created_at":"2018-08-31T03:52:12.000Z","updated_at":"2025-03-16T16:05:45.000Z","dependencies_parsed_at":"2022-08-25T06:00:40.822Z","dependency_job_id":null,"html_url":"https://github.com/wangy8961/python3-algorithms","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wangy8961%2Fpython3-algorithms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wangy8961%2Fpython3-algorithms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wangy8961%2Fpython3-algorithms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wangy8961%2Fpython3-algorithms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wangy8961","download_url":"https://codeload.github.com/wangy8961/python3-algorithms/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251085147,"owners_count":21533821,"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":["algorithm","leetcode","python3","searching-algorithms","sorting-algorithms"],"created_at":"2024-11-11T06:11:08.072Z","updated_at":"2025-04-27T03:30:50.798Z","avatar_url":"https://github.com/wangy8961.png","language":"Python","readme":"# [\u003e Python3数据结构与算法](http://www.madmalls.com/blog/category/data-structures-and-algorithms-in-python3/)\n\n\n[![Python](https://img.shields.io/badge/python-v3.4%2B-blue.svg)](https://www.python.org/)\n[![build](https://img.shields.io/badge/build-passing-green.svg)](http://www.madmalls.com/)\n![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)\n\n# 1. 算法概述\n\n- [算法概述](http://www.madmalls.com/blog/post/algorithm-introduction/)\n\n# 2. 数据结构\n\n## 2.1 线性表\n\n- [Python3数据结构01 - 顺序表](http://www.madmalls.com/blog/post/order-list/)\n- [Python3数据结构02 - 单向链表](http://www.madmalls.com/blog/post/singly-linked-list/)\n- [Python3数据结构03 - 双向链表](http://www.madmalls.com/blog/post/doubly-linked-list/)\n- [Python3数据结构04 - 单向循环链表](http://www.madmalls.com/blog/post/singly-circular-linked-list/)\n\n## 2.2 栈\n\n- [Python3数据结构05 - 栈](http://www.madmalls.com/blog/post/stack/)\n\n## 2.3 队列\n\n- [Python3数据结构06 - 队列](http://www.madmalls.com/blog/post/queue-and-deque/)\n\n## 2.4 树\n\n- [Python3数据结构07 - 树、3种存储结构、二叉树](http://www.madmalls.com/blog/post/tree-and-how-to-storage/)\n\n## 2.5 图\n\n\n# 3. 查找算法\n\n- [Python3查找算法01 - 顺序查找](http://www.madmalls.com/blog/post/sequential-search/)\n- [Python3查找算法02 - 二分查找](http://www.madmalls.com/blog/post/binary-search/)\n\n# 4. 排序算法\n\n- [Python3排序算法01 - 冒泡排序](http://www.madmalls.com/blog/post/bubble-sort-algorithm/)\n- [Python3排序算法02 - 选择排序](http://www.madmalls.com/blog/post/selection-sort-algorithm/)\n- [Python3排序算法03 - 插入排序](http://www.madmalls.com/blog/post/insertion-sort-algorithm/)\n- [Python3排序算法04 - 希尔排序](http://www.madmalls.com/blog/post/shell-sort-algorithm/)\n- [Python3排序算法05 - 归并排序](http://www.madmalls.com/blog/post/merge-sort-algorithm/)\n- [Python3排序算法06 - 快速排序](http://www.madmalls.com/blog/post/quick-sort-algorithm/)\n\n# 5. LeetCode\n\n每个文件夹对应一个问题，文件夹下面有多个解法，其中 `[√]` 表示最优解，`[x]` 表示尚未完成\n\n# 6. 剑指 Offer\n\n每个文件夹对应一个问题，文件夹下面有多个解法，其中 `[√]` 表示最优解，`[x]` 表示尚未完成\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwangy8961%2Fpython3-algorithms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwangy8961%2Fpython3-algorithms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwangy8961%2Fpython3-algorithms/lists"}