开始学习写博客啦,各位大神要多多指教哈,技术渣渣的学习笔记。加油加油↖(^ω^)↗
分类:
其他好文 时间:
2015-05-01 12:10:50
阅读次数:
108
1.下载maven安装包2.解压后配置环境变量M2_HOME3.配置执行环境,配置path路径4.mvn-v检测maven的安装版本5.pom.xml<?xmlversion="1.0"encoding="utf-8"?><projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi..
分类:
其他好文 时间:
2015-05-01 12:09:04
阅读次数:
157
使用data
use mydata;
创建表
create table longmao
(
depeno int primary key,
dname varchar(20),
loc varchar(20)
);
往表里插数据
inseert into toroto values(1,'feifei');
显示所有的表
show tables;
显示表里的数据...
分类:
数据库 时间:
2015-05-01 12:08:03
阅读次数:
164
题目传送:Codeforces Round #301 (Div. 2)
A. Combination Lock
水题,求最小移动次数,简单贪心一下即可
AC代码:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#inclu...
分类:
其他好文 时间:
2015-05-01 12:09:59
阅读次数:
217
最小生成树kruskal算法。
首先必须形成一棵最小生成树,然后找出最长的路。
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int n,m,a,b,c,par[1005],rankk[1005], max_road;
struct edge {
int u,v,c...
分类:
其他好文 时间:
2015-05-01 12:08:49
阅读次数:
147
题目描述
小明和小慧吵架了,小明想见小慧并请求得到原谅。小慧给了小明两个数m和n(1
输入
输入m和n
输出
相邻两个素数差的最大值
样例输入
10 30
样例输出
6
提示
10和30之间的素数有 11 13 17 19 23 29 ,相邻两个素数差的最大值是29-23 = 6
...
分类:
其他好文 时间:
2015-05-01 12:10:11
阅读次数:
177
组合模式Composite组合模式也叫合成模式,又叫树形模式,就是把部分和整体的关系用树形结构来表示,是的客户端对单个对象和组合对象的使用具有一致性,可以看出,这里的部分和整体之间在功能上是类似的,对于这种类似性,通常可以采用继承的方式来实现,根据面向对象的设计原则,尽量使用组合而非继承,因此合成模式也是继承的一个替换方案。1.组合模式结构
组合模式实现原理图
组合模式就是把部分和整体的关系用树...
分类:
其他好文 时间:
2015-05-01 12:09:10
阅读次数:
217
bower cache功能:管理包缓存windows用户,在C:\Users\dulin\AppData\Local\bower\cache\packages目录下就是bower安装过的所有包的缓存用法:$ bower cacheUsage: bower cache [] []
Commands: clean...
分类:
系统相关 时间:
2015-05-01 12:09:39
阅读次数:
2646
js、jquery图片的局部放大 源代码下载地址:http://www.zuidaima.com/share/1550463733484544.htm...
分类:
Web程序 时间:
2015-05-01 12:09:17
阅读次数:
217
1、错误描述
严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.xml.XmlBeanDefinitionStore...
分类:
编程语言 时间:
2015-05-01 12:06:38
阅读次数:
458
Given a dice with n sides, you have to find the expected number of times you have to throw that dice to see all its faces at least once. Assume that the dice is fair, that means when you throw the dic...
分类:
其他好文 时间:
2015-05-01 12:08:28
阅读次数:
141
Crack Mathmen
题目链接:http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2165
Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^
题目描述
Since mathmen take security very ...
分类:
其他好文 时间:
2015-05-01 12:08:35
阅读次数:
167
题意:
给几个发电站,给几个消耗站,再给几个转发点。
发电站只发电,消耗站只消耗电,转发点只是转发电,再给各个传送线的传电能力。
问你消耗站能获得的最多电是多少。
思路:增加一个超级源点,和超级汇点。。把所给的发电站都和超级源点相连,把所给的消耗战都和超级汇点相连。。用EK求最大流。
模板有几个地方要注意。
1:start是编号最前的点,last是编号最后的点
...
分类:
其他好文 时间:
2015-05-01 12:07:35
阅读次数:
217
#include
#include
using namespace std;
char * Grial(char *str,int x)
{
int j = x-1;
int i = 0;
char *p = str+j;
char *q = str;
char temp;
while(i<j)
{
while(*p!='0')
{
p--;
j--;
}
...
分类:
编程语言 时间:
2015-05-01 12:05:45
阅读次数:
142
题目描述
Tree经过不懈奋斗,终于上了烟台大学,开始体验美好的大学生活,早晨去上个高数课吧,进到教室发现,全是书啊(占座的),不得不在后面坐着上课,Tree不服气啊,第二次课早早的来到教室准备占座,占座也是有规矩的:首先别人占的座位,你不能去占;其次,连着的空座,无论连着多少个空座都可以只用一本书去占,Tree不知道最少用几本书可以占完这一排的空座,只好请你来帮忙计算一下啦。
输...
分类:
其他好文 时间:
2015-05-01 12:07:24
阅读次数:
134
敲完了三层,好不容易适应了一个模式,就又改了七层,带着三层的习惯,伴着七层的热情,我就开始敲啊。
那么, 问题来了,三层时我的数据库连接,写在D层,那么我七层怎么办,总不能个个写吧?
想不通就问吧,可能大家都比较忙,人爱搭不惜理的说:该配置文件啊。
啊,配置文件,这是嘛?咱不知道啊!可脸皮薄也不好意思问,就差把。
配置文件是什么?
用户配置文件就是在用户登录电脑时,或是用户在使用软件时,...
分类:
其他好文 时间:
2015-05-01 12:06:41
阅读次数:
147
1265 - Island of Survival
PDF (English)
Statistics
Forum
Time Limit: 2 second(s)
Memory Limit: 32 MB
You are in a reality show, and the show is way too real t...
分类:
其他好文 时间:
2015-05-01 12:08:02
阅读次数:
542