摘要:
1二叉树的定义:每个结点至多只有两棵子树,并且树的子树有左右之分,其次序不能任意颠倒。 2性质:二叉树的第i层最多有2^(i-1)个结点。 3深度为k的二叉树最多有2^k-1个结点。 4任何一棵二叉树T,如果其终端结点数为n0,度为2的结点数为n2,则n0=n2+1. 5一个有n个结点的完全二叉树其 阅读全文
摘要:
创建一个线性表 #define MAXSIZE 100 typedef struct { ElemType *elem; int length; } SqlList; Status InitList_Sq (SqlList & L) { // 构造一个空的顺序表 L.elem = new ElemT 阅读全文
摘要:
function contains(root, n) { let node = n; while (node) { if (node root) { return true; } node = node.parentNode; } return false; }// dom contains源码 g 阅读全文
摘要:
this.debounce = debounce((fn, data, event) => { fn(data, event) }, 100) 阅读全文
摘要:
import { useState } from 'react'; import html2canvas from 'html2canvas'; function $(id) { return document.getElementById(id); } function useXiguan(pro 阅读全文
摘要:
https://gitee.com/uCharts/uCharts https://gitee.com/wendetech/dashboard/wikis ued 文档地址 https://www.jianshu.com/p/7ffdf1925d12 react多页面应用怎么构建和使用 import 阅读全文
摘要:
import { extend } from 'umi-request'; import { notification, Modal } from 'antd'; import { getToken } from './cookies'; import cloneDeep from 'lodash/ 阅读全文