栈的顺序存储 #define MaxSize 1000 typedef struct SNode *Stack; struct SNode { ElementType Data[MaxSize]; int Top; }; //入栈 void Push( Stack PtrS, ElementType ...
分类:
其他好文 时间:
2021-02-06 11:59:33
阅读次数:
0
zookeeper.properties # the directory where the snapshot is stored. dataDir=/tmp/zookeeper # the port at which the clients will connect clientPort=2181 ...
分类:
其他好文 时间:
2021-02-04 12:14:03
阅读次数:
0
返回String类型的数据 页面代码 <!-- jQuery导入 --> <script src="js/jquery-2.1.0.min.js"></script> <script type="text/javascript"> $(function() { //失去焦点事件 $("#userna ...
分类:
编程语言 时间:
2021-02-04 11:49:59
阅读次数:
0
1.安装jenkins docker pull jenkins/jenkins 2.启动jenkins docker run -d -p 49001:8080 -v $PWD/jenkins:/var/jenkins_home -t jenkins/jenkins(会有一串密钥) 3.访问<ip>: ...
分类:
其他好文 时间:
2021-02-03 10:48:57
阅读次数:
0
1、例如(登录/注册): header 引入 bootstrap : <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src ...
分类:
其他好文 时间:
2021-02-03 10:41:48
阅读次数:
0
Link Solution 如果令 \(G(i)\) 表示恰好有 \(i\) 种颜色出现了 \(S\) 次,答案就是 \(\sum_{i=0}^{\min(n/s,m)} w_i\times G(i)\) 令 \(lim=min(n/s,m)\),我们只需要求出 \(0\) ~ \(lim\) 的 ...
分类:
其他好文 时间:
2021-02-03 10:30:13
阅读次数:
0
今日学习:《机器学习十讲》第六讲,考研择校相关信息处理。 scala学习: package com.chapter01.datatype object TypeDemo02 { def main(args: Array[String]): Unit = { println("Long的最大值:" + ...
分类:
其他好文 时间:
2021-02-02 11:23:01
阅读次数:
0
Aimee 很显然的状压dp $f_{i,j}$表示在i这个集合,最后停在了j时的最小长度 转移就行了 #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; int ...
分类:
其他好文 时间:
2021-02-02 11:22:43
阅读次数:
0
原文链接:https://blog.csdn.net/tsing1996/article/details/73740426 需要的环境 jquery-3.2.1.min.js (从jQuery官网下载 http://jquery.com/download/) simplejson (pip inst ...
分类:
Web程序 时间:
2021-02-01 12:43:55
阅读次数:
0
Java基础语法 注释 // 单行注释 /* 多行注释 多行注释 多行注释 */ /** * 文档注释 * 文档注释 * 文档注释 */ 标识符 标识符规则: 所有的标识符都应该以字母(A-Z或者a-z)、美元符号($)、下划线(_)开始 首字符后可以是字母(A-Z或者a-z)、美元符号($)、下划 ...
分类:
编程语言 时间:
2021-02-01 12:38:00
阅读次数:
0