René's URL Explorer Experiment


Title: 前端进阶算法7:小白都可以看懂的树与二叉树 · Issue #39 · sisterAn/JavaScript-Algorithms · GitHub

Open Graph Title: 前端进阶算法7:小白都可以看懂的树与二叉树 · Issue #39 · sisterAn/JavaScript-Algorithms

X Title: 前端进阶算法7:小白都可以看懂的树与二叉树 · Issue #39 · sisterAn/JavaScript-Algorithms

Description: 引言 不同与我们之前介绍的线性结构,今天我们介绍一种非线性结构:树,树的内容比较多,包括BST树、AVL树、Trie树等,这部分内容将放在下几个章节陆续放出,本章将介绍树与二叉树的基础必会内容,在开始这一章节前,请思考以下内容: 什么是树? 树的高度怎么计算? 什么是二叉树? 什么是平衡二叉树? 在代码中如何表示一棵二叉树? 二叉树的前序、中序、后序遍历又是什么?如何实现? 能否用递归及迭代两种方式实现喃? 下面进入本节内容👇 一、树 不同于我们上面介绍的线性结构,树是...

Open Graph Description: 引言 不同与我们之前介绍的线性结构,今天我们介绍一种非线性结构:树,树的内容比较多,包括BST树、AVL树、Trie树等,这部分内容将放在下几个章节陆续放出,本章将介绍树与二叉树的基础必会内容,在开始这一章节前,请思考以下内容: 什么是树? 树的高度怎么计算? 什么是二叉树? 什么是平衡二叉树? 在代码中如何表示一棵二叉树? 二叉树的前序、中序、后序遍历又是什么?如何实现? 能否用递归及迭代...

X Description: 引言 不同与我们之前介绍的线性结构,今天我们介绍一种非线性结构:树,树的内容比较多,包括BST树、AVL树、Trie树等,这部分内容将放在下几个章节陆续放出,本章将介绍树与二叉树的基础必会内容,在开始这一章节前,请思考以下内容: 什么是树? 树的高度怎么计算? 什么是二叉树? 什么是平衡二叉树? 在代码中如何表示一棵二叉树? 二叉树的前序、中序、后序遍历又是什么?如何实现? 能否用递归及迭代...

Opengraph URL: https://github.com/sisterAn/JavaScript-Algorithms/issues/39

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"前端进阶算法7:小白都可以看懂的树与二叉树","articleBody":"### 引言\r\n\r\n不同与我们之前介绍的线性结构,今天我们介绍一种非线性结构:树,树的内容比较多,包括BST树、AVL树、Trie树等,这部分内容将放在下几个章节陆续放出,本章将介绍树与二叉树的基础必会内容,在开始这一章节前,请思考以下内容:\r\n\r\n- 什么是树?\r\n- 树的高度怎么计算?\r\n- 什么是二叉树?\r\n- 什么是平衡二叉树?\r\n- 在代码中如何表示一棵二叉树?\r\n- 二叉树的前序、中序、后序遍历又是什么?如何实现?\r\n- 能否用递归及迭代两种方式实现喃?\r\n\r\n下面进入本节内容👇\r\n\r\n### 一、树\r\n\r\n不同于我们上面介绍的线性结构,树是一种非线性结构。\r\n\r\n图:\r\n\r\n![img](https://cdn.nlark.com/yuque/0/2020/png/273506/1584204198839-33fe640c-0d26-422c-a532-7313246760ba.png)\r\n\r\n它遵循:\r\n\r\n- 仅有唯一一个根节点,没有节点则为空树\r\n- 除根节点外,每个节点都有并仅有唯一一个父节点\r\n- 节点间不能形成闭环\r\n\r\n这就是树!\r\n\r\n树有几个概念:\r\n\r\n- 拥有相同父节点的节点,互称为兄弟节点\r\n- **节点的深度** :从根节点到该节点所经历的边的个数\r\n- **节点的高度** :节点到叶节点的最长路径\r\n- 树的高度:根节点的高度\r\n\r\n![](http://resource.muyiy.cn/image/20200321173057.png)\r\n\r\nB、C、D就互称为兄弟节点,其中,节点B的高度为2,节点B的深度为 1,树的高度为3\r\n\r\n#### 高度\r\n\r\n树的高度计算公式:\r\n\r\n![](http://resource.muyiy.cn/image/20200512000529.png)\r\n\r\n下图每个节点值都代表来当前节点的高度:\r\n\r\n![](http://resource.muyiy.cn/image/20200512000610.png)\r\n\r\n### 二、二叉树\r\n\r\n二叉树,故名思义,最多仅有两个子节点的树(最多能分两个叉的树🤦‍♀️):\r\n\r\n图:\r\n\r\n![img](https://cdn.nlark.com/yuque/0/2020/png/273506/1584204346095-45e8f1b3-a095-42b2-9d7e-5f7d4a6a48d3.png)\r\n\r\n### 三、平衡二叉树\r\n\r\n二叉树中,每一个节点的左右子树的高度相差不能大于 1,称为平衡二叉树。\r\n\r\n![](http://resource.muyiy.cn/image/20200512000105.png)\r\n\r\n另外还有满二叉树、完全二叉树等:\r\n\r\n- **满二叉树**:除了叶结点外每一个结点都有左右子叶且叶子结点都处在最底层的二叉树\r\n- **完全二叉树**:深度为h,除第 h 层外,其它各层 (1~h-1) 的结点数都达到最大个数,第h 层所有的结点都连续集中在最左边\r\n\r\n### 四、在代码中如何去表示一棵二叉树\r\n\r\n#### 1. 链式存储法\r\n\r\n二叉树的存储很简单,在二叉树中,我们看到每个节点都包含三部分:\r\n\r\n- 当前节点的 val\r\n- 左子节点 left\r\n- 右子节点 right\r\n\r\n所以我们可以将每个节点定义为:\r\n\r\n```js\r\nfunction Node(val) {\r\n    // 保存当前节点 key 值\r\n    this.val = val\r\n    // 指向左子节点\r\n    this.left = null\r\n    // 指向右子节点\r\n    this.right = null\r\n}\r\n```\r\n\r\n一棵二叉树可以由根节点通过左右指针连接起来形成一个树。\r\n\r\n```js\r\nfunction BinaryTree() {\r\n  let Node = function (val) {\r\n    this.val = val\r\n    this.left = null\r\n    this.right = null\r\n  }\r\n  let root = null\r\n}\r\n```\r\n\r\n#### 2. 数组存储法(适用于完全二叉树)\r\n\r\n下图就是一棵完全二叉树,\r\n\r\n如果我们把根节点存放在位置 `i=1` 的位置,则它的左子节点位置为 `2i = 2` ,右子节点位置为 `2i+1 = 3` 。\r\n\r\n如果我们选取 B 节点 `i=2` ,则它父节点为 `i/2 = 1` ,左子节点 `2i=4` ,右子节点  `2i+1=5` 。\r\n\r\n以此类推,我们发现所有的节点都满足这三种关系:\r\n\r\n- 位置为 i 的节点,它的父节点位置为 `i/2`\r\n- 它的左子节点 `2i` \r\n- 它的右子节点  `2i+1`\r\n\r\n因此,如果我们把完全二叉树存储在数组里(从下标为 1 开始存储),我们完全可以通过下标找到任意节点的父子节点。从而完整的构建出这个完全二叉树。这就是数组存储法。\r\n\r\n数组存储法相对于链式存储法不需要为每个节点创建它的左右指针,更为节省内存。\r\n\r\n![](http://resource.muyiy.cn/image/20200323214643.png)\r\n\r\n\r\n\r\n### 五、二叉树的遍历\r\n\r\n二叉树的遍历可分为:\r\n\r\n- 前序遍历\r\n- 中序遍历\r\n- 后序遍历\r\n\r\n所谓前、中、后,不过是根的顺序,即也可以称为先根遍历、中根遍历、后根遍历\r\n\r\n#### 1. 前序遍历\r\n\r\n对于二叉树中的任意一个节点,先打印该节点,然后是它的左子树,最后右子树\r\n\r\n![](http://resource.muyiy.cn/image/20200511205130.png)\r\n\r\n#### 2. 中序遍历\r\n\r\n对于二叉树中的任意一个节点,先打印它的左子树,然后是该节点,最后右子树\r\n\r\n![](http://resource.muyiy.cn/image/20200511205449.png)\r\n\r\n#### 3. 后序遍历\r\n\r\n对于二叉树中的任意一个节点,先打印它的左子树,然后是右子树,最后该节点\r\n\r\n![](http://resource.muyiy.cn/image/20200511205837.png)\r\n\r\n#### 4. 代码实现(前序遍历为例)\r\n\r\n所以,遍历二叉树的过程也就是一个递归的过程,例如前序遍历,先遍历根节点,然后是根的左子树,最后右子树;遍历根节点的左子树的时候,又是先遍历左子树的根节点,然后左子树的左子树,左子树的右子树…….\r\n\r\n所以,它的核心代码就是:\r\n\r\n```js\r\n// 前序遍历核心代码\r\nvar preOrderTraverseNode = (node) =\u003e {\r\n    if(node) {\r\n        // 先根节点\r\n        result.push(node.val)\r\n        // 然后遍历左子树\r\n        preOrderTraverseNode(node.left)\r\n        // 再遍历右子树\r\n        preOrderTraverseNode(node.right)\r\n    }\r\n}\r\n```\r\n\r\n完整代码如下:\r\n\r\n##### 递归实现\r\n\r\n```js\r\n// 前序遍历\r\nvar preorderTraversal = (root) =\u003e {\r\n    let result = []\r\n    var preOrderTraverseNode = (node) =\u003e {\r\n        if(node) {\r\n            // 先根节点\r\n            result.push(node.val)\r\n            // 然后遍历左子树\r\n            preOrderTraverseNode(node.left)\r\n            // 再遍历右子树\r\n            preOrderTraverseNode(node.right)\r\n        }\r\n    }\r\n    preOrderTraverseNode(root)\r\n    return result\r\n};\r\n```\r\n\r\n我们既然可以使用递归实现,那么是否也可以使用迭代实现喃?\r\n\r\n##### 迭代实现\r\n\r\n利用栈来记录遍历的过程,实际上,递归就使用了调用栈,所以这里我们可以使用栈来模拟递归的过程\r\n\r\n- 首先根入栈\r\n- 将根节点出栈,将根节点值放入结果数组中\r\n- 然后遍历左子树、右子树,因为栈是先入后出,所以,我们先右子树入栈,然后左子树入栈\r\n- 继续出栈(左子树被出栈)…….\r\n\r\n依次循环出栈遍历入栈,直到栈为空,遍历完成\r\n\r\n```js\r\n// 前序遍历\r\nconst preorderTraversal = (root) =\u003e {\r\n    const list = [];\r\n    const stack = [];\r\n    \r\n    // 当根节点不为空的时候,将根节点入栈\r\n    if(root) stack.push(root)\r\n    while(stack.length \u003e 0) {\r\n        const curNode = stack.pop()\r\n        // 第一步的时候,先访问的是根节点\r\n        list.push(curNode.val)\r\n        \r\n        // 我们先打印左子树,然后右子树\r\n        // 所以先加入栈的是右子树,然后左子树\r\n        if(curNode.right !== null) {\r\n            stack.push(curNode.right)\r\n        }\r\n        if(curNode.left !== null) {\r\n            stack.push(curNode.left)\r\n        }\r\n    }\r\n    return list\r\n}\r\n```\r\n\r\n##### 复杂度分析:\r\n\r\n空间复杂度:O(n)\r\n\r\n时间复杂度:O(n)\r\n\r\n至此,我们已经实现了二叉树的前序遍历,尝试思考一下二叉树的中序遍历如何实现喃?\r\n\r\n### 六、leetcode94:二叉树的中序遍历\r\n\r\n给定一个二叉树,返回它的 **中序** 遍历。\r\n\r\n**示例:**\r\n\r\n```js\r\n输入: [1,null,2,3]\r\n   1\r\n    \\\r\n     2\r\n    /\r\n   3\r\n\r\n输出: [1,3,2]\r\n```\r\n\r\n**进阶:**  递归算法很简单,你可以通过迭代算法完成吗?\r\n\r\n欢迎将解答提交到 [JavaScript-Algorithms](https://github.com/sisterAn/JavaScript-Algorithms) ,这里我们提交了前端所用到的算法系列文章以及题目(已解答),欢迎star,如果感觉不错,点个赞支持一下呗😊\r\n\r\n### 七、前端算法集训营第一期免费加入啦\r\n\r\n欢迎关注「前端瓶子君」,回复「算法」自动加入,从0到1构建完整的数据结构与算法体系!\r\n\r\n在这里,瓶子君不仅介绍算法,还将算法与前端各个领域进行结合,包括浏览器、HTTP、V8、React、Vue源码等。\r\n\r\n在这里,你可以每天学习一道大厂算法题(阿里、腾讯、百度、字节等等)或 leetcode,瓶子君都会在第二天解答哟!\r\n\r\n![](http://resource.muyiy.cn/image/20200424231501.png)\r\n\r\n⬆️ **扫码关注公众号「前端瓶子君」,回复「算法」即可自动加入 👍👍👍**","author":{"url":"https://github.com/sisterAn","@type":"Person","name":"sisterAn"},"datePublished":"2020-05-12T13:37:50.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/39/JavaScript-Algorithms/issues/39"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:cc07d16c-7ec8-66d0-5403-dce164acabaf
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB156:E1D0E:75CEAE:9B7090:696B4C3A
html-safe-nonce8bd29bfa4b1ea487b3add81ad9346415c4140b214ec1db28c8e66e149e87de6d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCMTU2OkUxRDBFOjc1Q0VBRTo5QjcwOTA6Njk2QjRDM0EiLCJ2aXNpdG9yX2lkIjoiNzU1NjM3NTQ1NzI5MjgzMTgwMiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaca47603916d4bde8716e82bbf05af56e513122b724b4fd8a58dd4626199359bc8
hovercard-subject-tagissue:616664093
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/sisterAn/JavaScript-Algorithms/39/issue_layout
twitter:imagehttps://opengraph.githubassets.com/3825638642d4fe17b34cf5d79314df57515fa6727751181ad2a450af5b5b77ae/sisterAn/JavaScript-Algorithms/issues/39
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/3825638642d4fe17b34cf5d79314df57515fa6727751181ad2a450af5b5b77ae/sisterAn/JavaScript-Algorithms/issues/39
og:image:alt引言 不同与我们之前介绍的线性结构,今天我们介绍一种非线性结构:树,树的内容比较多,包括BST树、AVL树、Trie树等,这部分内容将放在下几个章节陆续放出,本章将介绍树与二叉树的基础必会内容,在开始这一章节前,请思考以下内容: 什么是树? 树的高度怎么计算? 什么是二叉树? 什么是平衡二叉树? 在代码中如何表示一棵二叉树? 二叉树的前序、中序、后序遍历又是什么?如何实现? 能否用递归及迭代...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamesisterAn
hostnamegithub.com
expected-hostnamegithub.com
None5f99f7c1d70f01da5b93e5ca90303359738944d8ab470e396496262c66e60b8d
turbo-cache-controlno-preview
go-importgithub.com/sisterAn/JavaScript-Algorithms git https://github.com/sisterAn/JavaScript-Algorithms.git
octolytics-dimension-user_id19721451
octolytics-dimension-user_loginsisterAn
octolytics-dimension-repository_id252061924
octolytics-dimension-repository_nwosisterAn/JavaScript-Algorithms
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id252061924
octolytics-dimension-repository_network_root_nwosisterAn/JavaScript-Algorithms
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release82560a55c6b2054555076f46e683151ee28a19bc
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/sisterAn/JavaScript-Algorithms/issues/39#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FsisterAn%2FJavaScript-Algorithms%2Fissues%2F39
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FsisterAn%2FJavaScript-Algorithms%2Fissues%2F39
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=sisterAn%2FJavaScript-Algorithms
Reloadhttps://github.com/sisterAn/JavaScript-Algorithms/issues/39
Reloadhttps://github.com/sisterAn/JavaScript-Algorithms/issues/39
Reloadhttps://github.com/sisterAn/JavaScript-Algorithms/issues/39
sisterAn https://github.com/sisterAn
JavaScript-Algorithmshttps://github.com/sisterAn/JavaScript-Algorithms
Notifications https://github.com/login?return_to=%2FsisterAn%2FJavaScript-Algorithms
Fork 649 https://github.com/login?return_to=%2FsisterAn%2FJavaScript-Algorithms
Star 5.7k https://github.com/login?return_to=%2FsisterAn%2FJavaScript-Algorithms
Code https://github.com/sisterAn/JavaScript-Algorithms
Issues 158 https://github.com/sisterAn/JavaScript-Algorithms/issues
Pull requests 0 https://github.com/sisterAn/JavaScript-Algorithms/pulls
Actions https://github.com/sisterAn/JavaScript-Algorithms/actions
Projects 0 https://github.com/sisterAn/JavaScript-Algorithms/projects
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/sisterAn/JavaScript-Algorithms/security
Please reload this pagehttps://github.com/sisterAn/JavaScript-Algorithms/issues/39
Insights https://github.com/sisterAn/JavaScript-Algorithms/pulse
Code https://github.com/sisterAn/JavaScript-Algorithms
Issues https://github.com/sisterAn/JavaScript-Algorithms/issues
Pull requests https://github.com/sisterAn/JavaScript-Algorithms/pulls
Actions https://github.com/sisterAn/JavaScript-Algorithms/actions
Projects https://github.com/sisterAn/JavaScript-Algorithms/projects
Security https://github.com/sisterAn/JavaScript-Algorithms/security
Insights https://github.com/sisterAn/JavaScript-Algorithms/pulse
New issuehttps://github.com/login?return_to=https://github.com/sisterAn/JavaScript-Algorithms/issues/39
New issuehttps://github.com/login?return_to=https://github.com/sisterAn/JavaScript-Algorithms/issues/39
前端进阶算法7:小白都可以看懂的树与二叉树https://github.com/sisterAn/JavaScript-Algorithms/issues/39#top
二叉树https://github.com/sisterAn/JavaScript-Algorithms/issues?q=state%3Aopen%20label%3A%22%E4%BA%8C%E5%8F%89%E6%A0%91%22
文章https://github.com/sisterAn/JavaScript-Algorithms/issues?q=state%3Aopen%20label%3A%22%E6%96%87%E7%AB%A0%22
https://github.com/sisterAn
https://github.com/sisterAn
sisterAnhttps://github.com/sisterAn
on May 12, 2020https://github.com/sisterAn/JavaScript-Algorithms/issues/39#issue-616664093
https://camo.githubusercontent.com/4d9aeac68994c516c39f02a2e25330b9cee23253cd9c216538764fd0026872f1/68747470733a2f2f63646e2e6e6c61726b2e636f6d2f79757175652f302f323032302f706e672f3237333530362f313538343230343139383833392d33336665363430632d306432362d343232632d613533322d3733313332343637363062612e706e67
https://camo.githubusercontent.com/2f845d1b80f6e6bda2ac4e1973e8047b840e3943e8afa6aaf50fed87844114bd/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303332313137333035372e706e67
https://camo.githubusercontent.com/51bcb54f26b58706e1dda5d89e9dc94b90e04608593cf041502ac4d98dacf637/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303531323030303532392e706e67
https://camo.githubusercontent.com/c40d4eaaa32627f65f650beb090d717c73bbc888be3db559d48a344edcce6245/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303531323030303631302e706e67
https://camo.githubusercontent.com/8b56c302394f27b213c935823186ffbd94e77de116f678b51e04f63b52893b0f/68747470733a2f2f63646e2e6e6c61726b2e636f6d2f79757175652f302f323032302f706e672f3237333530362f313538343230343334363039352d34356538663162332d613039352d343262322d396437652d3566376434613661343864332e706e67
https://camo.githubusercontent.com/d0f88f2866d4f63225bde0103d1fea5d57d9bd5dc8ab1dffa39d0fb16aaa5b40/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303531323030303130352e706e67
https://camo.githubusercontent.com/c07b9e5f73ce9d662089a0e0dcf5a61a5578fdd600603d6c7fed127faa7c56c4/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303332333231343634332e706e67
https://camo.githubusercontent.com/06252eb98f328c48b0776492e770f5a85fbb8f86f610b2f84622bd3b915ef743/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303531313230353133302e706e67
https://camo.githubusercontent.com/910dea09c40c339df122cde019ef254a5ae41933ebbe823aa9b13c41c358ce3d/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303531313230353434392e706e67
https://camo.githubusercontent.com/a11d5b4f4f98522793ccfa0949fc84a52fd294b8ffcc174b9643e142fe88f0cf/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303531313230353833372e706e67
JavaScript-Algorithmshttps://github.com/sisterAn/JavaScript-Algorithms
https://camo.githubusercontent.com/ce68db1106fbcc54f923d1288cb0d27d0f26684e02898e47c219abed67653a9f/687474703a2f2f7265736f757263652e6d757969792e636e2f696d6167652f32303230303432343233313530312e706e67
二叉树https://github.com/sisterAn/JavaScript-Algorithms/issues?q=state%3Aopen%20label%3A%22%E4%BA%8C%E5%8F%89%E6%A0%91%22
文章https://github.com/sisterAn/JavaScript-Algorithms/issues?q=state%3Aopen%20label%3A%22%E6%96%87%E7%AB%A0%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.