一阶微分方程 Posted on 2020-06-18 Words count in article: 1.3k | Reading time ≈ 5 一阶微分方程可分离变量微分方程 右边可以分成一个关于x的函数和一个关于y的函数相乘,比如$ x^2 y$ ;$x^2+y^2 $这样的就不能算这类型的函数 对第一个式子进行变形我们得到了第二个式子,这也是可分离的 最后把y放在一起,x放在一起, 求解 分离变量方程的解法 例一 例二 例三 例四 例五 ... Read more »
BSTandAVL Posted on 2020-06-17 | In 树 Words count in article: 6.7k | Reading time ≈ 28 BST知识点概述二叉查找树(Binary Search Tree, BST), 又称为二叉搜索树,二叉排序树,是一种对查找和排序都有用的特殊二叉树。 二叉查找树或是空树, 或是满足如下性质的二叉树: 1) 若其左子树非空, 则左子树上所有结点的值均小于根结点的值 2) 若其右子树非空, ... Read more »
B树 Posted on 2020-06-17 | In 树 Words count in article: 5.5k | Reading time ≈ 19 B树概要 二叉搜索树的搜索效率和树高成正比关系,通过减少二叉搜索树的高度,可以提高搜索效率今 平衡二叉树可以减少树高,但是仍然不够彻底,因为每个结点只含有—个关键字,树 高仍然是$O(\log n)$, 能否继续压缩树高, 使其更加扁平化呢? 如果—个结点不限于存 ... Read more »
微分方程基本概念 Posted on 2020-06-16 Words count in article: 20 | Reading time ≈ 1 微分方程基本概念 几何问题 物理问题 基本概念 Read more »
数据可视化在作业当中的应用 Posted on 2020-06-16 Words count in article: 357 | Reading time ≈ 1 数据可视化在作业当中的应用数据可视化我用了d3去实现 home.js12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626 ... Read more »
CssandSass Posted on 2020-06-15 Words count in article: 9.4k | Reading time ≈ 36 CssandSass学习视频:https://www.youtube.com/watch?v=_a5j7KoflTs&list=WL&index=6 Documentation:https://sass-lang.com/documentation 引用的一些教程: w3cschoo ... Read more »
leetcode树 Posted on 2020-06-15 Words count in article: 391 | Reading time ≈ 2 leetcode树简单100 相同的树 12345678910111213141516171819202122/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNod ... Read more »
JavaScript数据可视化之D3 Posted on 2020-06-12 Words count in article: 8.3k | Reading time ≈ 39 JavaScript数据可视化之D3教程: https://www.youtube.com/watch?v=_8V5o2UHG0E&list=WL&index=6&t=202s 网站:https://vizhub.com/ 教程2:https://www.bilibili. ... Read more »
一般周期的函数的傅里叶级数 Posted on 2020-06-10 Words count in article: 41 | Reading time ≈ 1 一般周期的函数的傅里叶级数周期为2l的傅里叶级数 定理 例题 方法 傅里叶级数的复数形式小结 Read more »
傅里叶级数 Posted on 2020-06-10 Words count in article: 117 | Reading time ≈ 1 傅里叶级数三角级数和三角函数系得正交性 定理1 函数展开成傅里叶级数定理2 定理3(收敛展开定理) 例题1 2 3 方法 正弦函数和余弦函数周期为2$\pi$ 的奇偶函数的傅里叶级数定理4 例题 定义在[0,pi]上的函数的傅里叶级数 例题 小结 解题步骤和技 ... Read more »