摘要: 1二叉树的定义:每个结点至多只有两棵子树,并且树的子树有左右之分,其次序不能任意颠倒。 2性质:二叉树的第i层最多有2^(i-1)个结点。 3深度为k的二叉树最多有2^k-1个结点。 4任何一棵二叉树T,如果其终端结点数为n0,度为2的结点数为n2,则n0=n2+1. 5一个有n个结点的完全二叉树其 阅读全文
posted @ 2023-11-13 11:40 悔创阿里-杰克马 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 夹逼定理: 阅读全文
posted @ 2023-10-10 21:44 悔创阿里-杰克马 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-10-08 12:28 悔创阿里-杰克马 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 创建一个线性表 #define MAXSIZE 100 typedef struct { ElemType *elem; int length; } SqlList; Status InitList_Sq (SqlList & L) { // 构造一个空的顺序表 L.elem = new ElemT 阅读全文
posted @ 2023-10-07 11:16 悔创阿里-杰克马 阅读(1) 评论(0) 推荐(0) 编辑
摘要: function contains(root, n) { let node = n; while (node) { if (node root) { return true; } node = node.parentNode; } return false; }// dom contains源码 g 阅读全文
posted @ 2020-11-11 17:45 悔创阿里-杰克马 阅读(258) 评论(0) 推荐(0) 编辑
摘要: this.debounce = debounce((fn, data, event) => { fn(data, event) }, 100) 阅读全文
posted @ 2020-08-12 09:35 悔创阿里-杰克马 阅读(116) 评论(0) 推荐(0) 编辑
摘要: import { useState } from 'react'; import html2canvas from 'html2canvas'; function $(id) { return document.getElementById(id); } function useXiguan(pro 阅读全文
posted @ 2020-07-24 10:39 悔创阿里-杰克马 阅读(140) 评论(0) 推荐(0) 编辑
摘要: https://gitee.com/uCharts/uCharts https://gitee.com/wendetech/dashboard/wikis ued 文档地址 https://www.jianshu.com/p/7ffdf1925d12 react多页面应用怎么构建和使用 import 阅读全文
posted @ 2020-03-02 19:54 悔创阿里-杰克马 阅读(249) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-02-13 15:43 悔创阿里-杰克马 阅读(1) 评论(0) 推荐(0) 编辑
摘要: import { extend } from 'umi-request'; import { notification, Modal } from 'antd'; import { getToken } from './cookies'; import cloneDeep from 'lodash/ 阅读全文
posted @ 2019-12-27 10:03 悔创阿里-杰克马 阅读(328) 评论(1) 推荐(0) 编辑
求投食~(点图即可)