This page covers simple Bonobo Git Server installation. Be sure to check prerequisites page before installation and for other sections visit the docum
分类:
其他好文 时间:
2016-01-27 18:52:50
阅读次数:
461
CSS的伪类选择器常用的是link/visited/hover/active,分别对应未访问、已访问过、鼠标悬停、鼠标按下时的样式,常用于链接,使用时要按此顺序依次写CSS,不能乱1 a:link{background-color:blue;} //未访问前深蓝色2 a:visit...
分类:
Web程序 时间:
2016-01-27 12:34:42
阅读次数:
227
一:访问者模式定义 --->封装一些作用于某种数据结构中的各元素的操作,它可以在不改变数据结构的前提下定义作用于这些元素的新的操作。二:访问者模式角色● Visitor——抽象访问者 抽象类或者接口,声明访问者可以访问哪些元素,具体到程序中就是visit方法的参数定义哪些对象是可以被访问的。● Co...
分类:
其他好文 时间:
2016-01-26 21:55:50
阅读次数:
214
Description When FJ's friends visit him on the farm, he likes to show them around. His farm comprises N (1 2 #include 3 #include 4 #include 5 #defin.....
分类:
其他好文 时间:
2016-01-19 10:25:12
阅读次数:
219
给你A{1,2,3,4,4,5}, B{2,4},求A-B={1,3,4,5},很简单. visit 1只用一个HashMap 1 package TwoSets; 2 import java.util.*; 3 4 public class Solution { 5 public Arr...
分类:
其他好文 时间:
2016-01-15 12:52:21
阅读次数:
145
今天为java.lang.NoSuchMethodError: org.objectweb.asm.ClassVisitor.visit(IILjava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)V错误真花...
分类:
编程语言 时间:
2016-01-09 22:52:58
阅读次数:
263
单纯为了自己记录方便以后查看# This is a configuration file for Zabbix Server process# To get more information about Zabbix,# visit http://www.zabbix.com############...
分类:
其他好文 时间:
2015-12-24 09:23:43
阅读次数:
546
/* POJ 3278 Catch That Cow --- 简单BFS */#include #include #include using namespace std;const int maxn = 100005;bool visit[maxn];int step[maxn];int bfs(...
分类:
其他好文 时间:
2015-12-19 06:34:10
阅读次数:
157
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2553DFS+回溯/* HDU 2553 N皇后问题 --- 经典回溯 */#include #include const int maxn = 15;int cnt, n;bool visit[3][m...
分类:
其他好文 时间:
2015-12-13 23:22:01
阅读次数:
196
POJ 1321 棋盘问题 http://poj.org/problem?id=1321/*POJ 1321 棋盘问题 --- DFS*/#include #include int n, k, cnt;bool visit[10]; //标记列的访问状态char mapp[10][10];/*从第....
分类:
其他好文 时间:
2015-12-05 00:20:10
阅读次数:
249