react基础4授权与部署 Posted on 2020-06-05 | In react Words count in article: 4.6k | Reading time ≈ 19 react基础4授权与部署最终章。可能有番外吧。。但是也要在完成大作业之后了 前三章: react基础3表单与后端 react基础2排序分页与查询+路由 react基础组件+如何组合组件 Authentication and AuthorizationIntroductionRegistering ... Read more »
离散数学之关系2 Posted on 2020-06-05 Words count in article: 3.9k | Reading time ≈ 14 离散数学之关系2 Closures of Relations 闭包 设R是非空集合A上的关系,在关系R中,可能有或无性质P,如自反(r),对称(s),传递(t),若存在包含R,满足性质P的关系S,使得S是所有包含R,满足P的关系的子集,那么称S是R关于P的闭包(有时这样的闭包不存在) 所以我原来R可 ... Read more »
react基础3 Posted on 2020-06-04 | In react Words count in article: 10k | Reading time ≈ 45 react基础3:表单和后端前两篇回顾 react基础组件+如何组合组件 react基础2分页排序搜索+路由 下一篇 react基础4授权与部署 Forms 表单Introduction登陆表单 添加电影信息的表单 查询表单 Building a Bootstrap Form我们先把表单添 ... Read more »
离散数学之关系1 Posted on 2020-06-02 Words count in article: 1.5k | Reading time ≈ 6 离散数学之关系1 RelationBinary Relation 这样所有的二元运算符都可以成为一种关系,或者父子师生也可以成为一个关系 这个和我们的函数有点像,但是显然不是函数(一个x可以有多个指向),所以我们可以把关系看成一个函数的推广。函数本身就是个关系 Function as relati ... Read more »
react基础2 Posted on 2020-06-02 | In react Words count in article: 9.8k | Reading time ≈ 45 react基础2(分页分类排序+路由)这篇文章的教程 Mosh的react课程 从第5章开始 上一篇:react基础1组件与组合 下一篇:react基础3表单与后端 下下篇: react基础4授权与部署 Pagination, Filtering, and Sorting 分页过滤和排序Introd ... Read more »
幂级数 Posted on 2020-05-31 Words count in article: 797 | Reading time ≈ 2 幂级数函数项级数的概念 例子: 幂级数及其收敛性 Abel 定理$a_n$ 没有限定! 因为在 $|x|<|x_0|$ 的时候,幂级数是绝对收敛的,所以说条件收敛的点只可能是端点! 定理二$\Sigma{n=0}^\infty a_nx^n$ 的收敛半径为$R = \lim\limi ... Read more »
react基础 Posted on 2020-05-30 | In react Words count in article: 9.9k | Reading time ≈ 45 react基础(组件+组合组件)这篇文章的教程 Mosh的react课程 假设我们已经了解一些JavaScript的基础和OOP编程思想了 vscode中ctrl+p 实现文件查找 下载自动优化插件prettier,在保存时自动优化代码增加可读性 ComponentSetting Up the Pr ... Read more »
sscanf和sprintf Posted on 2020-05-30 Words count in article: 523 | Reading time ≈ 2 sscanf和sprintf这两个函数其实是C中的函数,所以操作的是字符数组,不是string类型,当然C++也能用。 还可以用streamstring 类实现 文章学习自 博客 常见的格式串 %% 印出百分比符号,不转换。 %c 整数转成对应的 ASCII 字元。 %d 整数转成十进位 ... Read more »
sstream Posted on 2020-05-30 Words count in article: 1.3k | Reading time ≈ 6 C++中的ssstream本文学习自 博客1 博客2 C++引入了ostringstream、istringstream、stringstream这三个类,要使用他们创建对象就必须包含sstream.h头文件。 1#include<sstream> istringstream类用于执行C ... Read more »
Trie树 Posted on 2020-05-30 | In 树 Words count in article: 1.8k | Reading time ≈ 8 Trie树 字典树又称Trie树,是单词查找树,是一种树形结构,也是哈希书的变种。典型应用于统计中,排序和保存大量字符串(但不仅仅限于字符串),所以经常被搜索引擎系统用于文本字频统计。它的优点是:利用字符串的公共前缀来减少查询时间,最大限度地减少无所谓的字符串比较,查询效率要比哈系树高 Tr ... Read more »