(1):text-align + line-height实现单行文本水平垂直居中 (4):margin-left或margin-right <style> ...
分类:
其他好文 时间:
2017-06-24 19:51:43
阅读次数:
155
maven项目搭建步骤 一、准备以下压缩包 1.JDK1.7 文件:jdk1.7.rar 2. eclipse-jee-mars-2 文件:32位系统准备eclipse-jee-mars-2-win32.zip,64位系统准备eclipse-jee-mars-2-win32-x86_64.zip 3 ...
分类:
其他好文 时间:
2017-06-24 19:51:37
阅读次数:
145
一、:nth-child 1.1 说明 :nth-child(n)选择器匹配属于其父元素的第N个子元素,不论元素的类型。n可以是数字、关键词或公式。 注意:如果第N个子元素与选择的元素类型不同则样式无效! 1.2 示例 二、:nth-of-type 2.1 说明 :nth-of-type(n)选择器 ...
分类:
Web程序 时间:
2017-06-24 19:51:29
阅读次数:
176
1 #include 2 #include 3 #include 4 #define MAX 1001 5 int a[MAX][MAX]; 6 int visited[MAX]; 7 int n, m, k; 8 9 using namespace std; 10 11 int dfs(int x... ...
分类:
其他好文 时间:
2017-06-24 19:51:18
阅读次数:
164
一,Struts2框架介绍 它是一个View框架,对Servle进行了封装,使用核心过滤器对servlet进行了解耦,可以自动封装数据 核心是结果视图导航 二,程序实例 1.导入框架依赖包 2.注册框架核心过滤器,一般工具会有自动生成 web.xml 3.编写action文件 Demo1Action ...
分类:
其他好文 时间:
2017-06-24 19:51:08
阅读次数:
118
在界面设计中,一个容器要放置许多组件,为了美观,为组件安排在容器中的位置,这就是布局设计。java.awt中定义了多种布局类,每种布局类对应一种布局的策略。常用的有以下布局类: FlowLayout,依次放置组件。 BoarderLayout,将组件放置在边界上。 CardLayout,将组件像扑克 ...
分类:
其他好文 时间:
2017-06-24 19:50:59
阅读次数:
168
一些源码:https://github.com/elbaulp/MafDet System that aims to detect and mitigate DDoS attacks using Machine Learning techniques & SDN.https://github.com ...
分类:
其他好文 时间:
2017-06-24 19:50:52
阅读次数:
586
//(a,b)最小公倍数=a*b/(a,b)最大公因数 //最大公因数用欧几里得定律求(这里不证明)可百度(说实话我好想不会orz)#include<bits/stdc++.h> using namespace std; int gcd(int x,int y){ return y==0?x:gcd ...
分类:
其他好文 时间:
2017-06-24 19:50:44
阅读次数:
173
?? 素数槽 Description 处于相邻的两个素数p和p + n之间的n - 1个连续的合数所组成的序列我们将其称为长度为n的素数槽。比如,?24, 25, 26, 27, 28?是处于素数23和素数29之间的一个长度为6的素数槽。 你的任务就是写一个程序来计算包括整数k的素数槽的长度。假设k ...
分类:
其他好文 时间:
2017-06-24 19:50:34
阅读次数:
155
小伙伴们,你们听说过多少?我们在前端切图项目中用到的有px,em,rem,vh,% 其他基本没用到过了。特别是vh ,特别好用。 附所有css单位,应该是最全的了 px:绝对单位,页面按精确像素展示 em:相对单位,基准点为父节点字体的大小,如果自身定义了font-size按自身来计算(浏览器默认字 ...
分类:
Web程序 时间:
2017-06-24 19:50:26
阅读次数:
174
1 #include 2 #include 3 #include 4 #include 5 6 int a[100000], b[100000], c[100000]; 7 int panduan=0; 8 int ff=0; 9 using namespace std; 10 11 void bi... ...
分类:
其他好文 时间:
2017-06-24 19:50:13
阅读次数:
203
1 #include 2 #include 3 int a[10000]; 4 int max1=0, n=0; 5 int first = 0; 6 using namespace std; 7 8 void bijiao() 9 { 10 int i; 11 for (i=1;i=1) 14 {... ...
分类:
其他好文 时间:
2017-06-24 19:50:02
阅读次数:
165
由于之前先安装了vs2010,再安装的SQL Server 2008 R2,导致SQL Server出现一些问题(例如:begin...end...无法折叠,导致看几百行的存储过程非常痛苦),所以索性直接重装SQL Server。 卸载重装SQLServer是个比较麻烦的问题,参照其他人的方法卸载( ...
分类:
数据库 时间:
2017-06-24 19:49:55
阅读次数:
234
简单hash ...
分类:
其他好文 时间:
2017-06-24 19:49:49
阅读次数:
135
Description Background Hugo Heavy is happy. After the breakdown of the Cargolifter project he can now expand business. But he needs a clever man who t ...
分类:
其他好文 时间:
2017-06-24 19:49:39
阅读次数:
151
1、使用配置文件配置文件[global]trusted-host=mirrors.aliyun.comindex-url=http://mirrors.aliyun.com/pypi/simple/配置文件放置位置Linux下:放在~/.pip/pip.confwindows下:用户文件夹下\pip ...
分类:
其他好文 时间:
2017-06-24 19:49:30
阅读次数:
131
P1223 排队接水 题目描述 有n个人在一个水龙头前排队接水,假如每个人接水的时间为Ti,请编程找出这n个人排队的一种顺序,使得n个人的平均等待时间最小。 输入输出格式 输入格式: 输入文件共两行,第一行为n;第二行分别表示第1个人到第n个人每人的接水时间T1,T2,…,Tn,每个数据之间有1个空 ...
分类:
其他好文 时间:
2017-06-24 19:49:21
阅读次数:
130