码迷,mamicode.com
首页 >  
搜索关键字:word length    ( 36649个结果
SQL SERVER 实现多个数据库之间表的联系,利用临时表枚举表中行数据
--SET IDENTITY_INSERT [User] on; SELECT ROW_NUMBER() OVER ( ORDER BY EmpID ) i,* INTO #A FROM [GMSToolManage].dbo.[employees]; DECLARE @count INT; SEL ...
分类:数据库   时间:2020-05-23 00:14:58    阅读次数:75
论文写作指南(格式篇)
临近毕业,在写毕业论文的时候遇到过很多坑,也使用了一些写论文的利器,在此贴整理出来,希望能对大家有用。 工具 文献管理利器 endnote endnote可谓是做研究必备的工具,它能解决许多关于论文文献的问题,最实用的功能就是利用word的endnote插件插入库中的文献,这样就不用你自己去一条条在 ...
分类:其他好文   时间:2020-05-23 00:10:48    阅读次数:374
js字符串截取函数
string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i); // or st ...
分类:Web程序   时间:2020-05-23 00:05:00    阅读次数:91
How to install john deere service advisor 4.2.005 on win 10 64bit
How to install john deere service advisor 4.2.005 with the February 2016 data base disks on a machine with win 10 64bit. 1/you must have enough disk s ...
分类:Windows程序   时间:2020-05-22 21:38:21    阅读次数:73
冒泡排序、选择排序、插入排序
冒泡排序: 核心思想:每一轮找出最大的元素放在数组的最后面。 public static void BubbleSort(int[] a){ //外层循环,找每一轮的最大数放在末尾 for(int i=0;i<a.length;i++){ //内层循环,遍历数组,比较得出最大值 for(int j= ...
分类:编程语言   时间:2020-05-22 21:31:13    阅读次数:54
LeetCode 97 交错字符串
题目大意是给三个字符串,问前两个字符串进行交错是否可以组成第三个字符串。我的思路就是用动态规划来做,用一个数组dp[i][j]表示匹配s3前i+1个字符时,用了j个s1的字符,s2可以推倒出来是用了i+1 j个字符,所以不用再开一维,两维就够了,第一次做多开了一维,时间和空间消耗都很大。更新dp数组 ...
分类:其他好文   时间:2020-05-22 19:29:17    阅读次数:49
Docker 安装并部署Tomcat、Mysql8、Redis
1. 安装前检查 1 #ContOS 7安装Docker系统为64位,内核版本为3.10+ 2 lsb_release -a 3 4 uname -r 5 6 #更新yum源 7 yum -y update 8 9 #查看是否已经安装Docker 10 yum list installed | gr ...
分类:数据库   时间:2020-05-22 18:54:34    阅读次数:65
js json生取key,value 值
this.dataView = []; if (data.dataView && data.dataView != null) { let dataViewArr = JSON.parse(data.dataView); for (var key in dataViewArr) { this.dat ...
分类:Web程序   时间:2020-05-22 17:36:25    阅读次数:58
el-upload上传图片不使用action属性
<el-upload action="#" ref="upload" list-type="picture-card" //照片墙的样式 :on-change="handleChange" :http-request="httpRequest" :before-upload="beforeAvata ...
分类:Web程序   时间:2020-05-22 17:30:39    阅读次数:452
Redis---set
最多存储2^32-1个元素,支持取交集、并集、差集 内部编码: 整数集合(intset) typedef struct intset{ uint32_t encoding; 编码类型(int8_t, int16_t...) uint32_t length; 元素个数 int8_t contents[ ...
分类:其他好文   时间:2020-05-22 16:54:32    阅读次数:63
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!