枚举T中失配的位置i,容易发现能够成立当且仅当存在一个以$T[0,i)$为后缀的前缀$S[0,a)$且$T(i,|T|)$是$S(a,|S|)$的一个前缀 考虑建立S的正序和倒序的两个后缀自动机,设$T[0,i)$对应点x(正序自动机中),$T(i,|T|)$对应点y(倒序自动机中),那么必然有$a ...
分类:
其他好文 时间:
2020-06-09 18:23:24
阅读次数:
56
https://blog.csdn.net/lzs781/article/details/104742043/ 官网 https://tensorflow.google.cn/tutorials/images/classification ...
分类:
其他好文 时间:
2020-06-09 16:48:21
阅读次数:
50
<el-upload :disabled="upLoading" :limit="12" action :http-request="uploadHttp" :show-file-list="false" accept=".png, .jpg, .jpeg"> <div> <i v-if="!upL ...
分类:
Web程序 时间:
2020-06-09 16:42:45
阅读次数:
82
show columns from 表名; desc 表名;(全写:describe 表名) show create table 表名; ...
分类:
数据库 时间:
2020-06-09 12:40:10
阅读次数:
101
查看使用的数据库引擎 show variables like '%storage_engine%'; 显示的使用的是InnoDB 查看引擎状态 show engine innodb status 2020-06-09 11:48:38 7fd22fb2c700 INNODB MONITOR OUTP ...
分类:
数据库 时间:
2020-06-09 12:35:52
阅读次数:
83
网址 很多人不知道如何在你的word中插入好看的代码段,这里我教大家一个简单的代码神器。 首先打开网址,将需要插入的代码复制粘贴到文本框中 点击“Show Highlighted”按钮,生成加高光的代码片段 Ctrl + A全选,Ctrl + C复制到剪切板 这时打开你的文本编辑器(WPS,或者wo ...
分类:
其他好文 时间:
2020-06-09 10:01:35
阅读次数:
102
课上内容(Lesson) Jessica 白洁 # 餐馆点简单 http://www.tingclass.net/show-8009-372432-1.html Real 麦克老师 # L的两种发音 https://www.bilibili.com/video/BV1Ds411t7to 练习Dark ...
分类:
其他好文 时间:
2020-06-09 10:00:31
阅读次数:
148
1.三层架构 与MVC设计模式 的目标一致:都是为了解耦合,提高代码复用 区别:二者对项目理解的角度不同2.三层组成:表示层 (USL,User Show Layer;视图层) -前台:对应与MVC中的View:用于和用户交互、界面的显示 jsp js html jquery等web前端技术 代码位 ...
分类:
其他好文 时间:
2020-06-08 23:34:23
阅读次数:
65
数据库连接方式 Spring.datasource.url=jdbc:mysql://location/mydb Spring.datasource.username=root Spring.datasource.password= 显示数据库:show databases; 创建数据库:creat ...
分类:
数据库 时间:
2020-06-08 19:23:03
阅读次数:
89
增删改查简易操作 对数据库的增删改查 增:create database db1 charset utf8; 查:show databases; 改:alter database db1 charset latin1; 删除: drop database db1; 对表的增删改查 先切换到表中:us ...
分类:
数据库 时间:
2020-06-08 19:00:43
阅读次数:
60