作为zabbix的部署,这里就不说了,网上一大堆文档,但关于配置文件的说明就比较少,这里列出服务端的配置文件zabbix_server的详细解释,感谢我主管的功劳。ZabbixServer端配置文件说明#ThisisaconfigurationfileforZabbixServerprocess#TogetmoreinformationaboutZabbix,#visit..
分类:
其他好文 时间:
2014-11-04 06:51:29
阅读次数:
219
用visit数组记录出现过的地方dp的时候注意一个问题就可以:abcdacbd来看看如果遇到重复的该怎么处理:遇到第二个a前都没有问题,第二次遇到a,然后肯定是更新a的位置的dp[4] = 4-0 = 4, 第二次遇到c, 更新c的位置为dp[5] ...
分类:
其他好文 时间:
2014-10-31 15:12:14
阅读次数:
144
#include #include #include #include #include int Int[10010];int visit[100010];using namespace std;int main(){ int n; while(cin>>n&&n) { ...
分类:
其他好文 时间:
2014-10-31 15:04:55
阅读次数:
234
#include
using namespace std;
int f;
typedef struct BiTNode
{
int data;
struct BiTNode *lchild,*rchild;
}BiTNode,*BiTree;
void visit(BiTree T)
{
if(T->data!=NULL)
{
if(f==1)
{
coutdata;
}...
分类:
编程语言 时间:
2014-10-30 19:19:25
阅读次数:
240
PHP关于COOKIE的应用"; } else { setcookie("visittime", date("y-m-d H:i:s"), time() + 60); echo "you visit our site's last time is : " .$_CO...
分类:
Web程序 时间:
2014-10-29 16:39:25
阅读次数:
175
贴一下板子。。。 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 #define MAX 202 9 bool flag, visit[MAX];10 int match[MAX];....
分类:
其他好文 时间:
2014-10-25 21:24:39
阅读次数:
261
Problem Description
After coding so many days,Mr Acmer wants to have a good rest.So travelling is the best choice!He has decided to visit n cities(he insists on seeing all the cities!And he does no...
分类:
其他好文 时间:
2014-10-24 13:01:58
阅读次数:
279
题目:对于一棵有N个结点的树,设计在O(N)时间内完成的先序、中序与后序遍历算法一、先序遍历递归实现:void InOrder( SearchTree T ){ if ( T != NULL ) { Visit( T ); InOrder( T->Left )...
分类:
编程语言 时间:
2014-10-18 18:12:26
阅读次数:
250
需求:客户的数据同时存在在另外一个不可控的系统中,需要和当前系统同步。思路:自动登录另外一个系统,然后抓取数据,同步到本系统中。技术点:模拟用户登录;保存登录状态;抓取数据/// /// visit the target url /// /// ...
interface Visitor {
void visit(Gladiolus g);
void visit(Chrysanthemum c);
}// concrete visitor 名称访问
class StringVisitor implements Visitor {
String s;
public String toString() {
return s;
}
...
分类:
编程语言 时间:
2014-10-14 15:48:28
阅读次数:
182