本来想用 priority_queue 去写个bfs。结果重载运算符忘了。ORZ。
然后看书和问别人熟悉了一下,记录一下。
struct lx
{
int x,y,lv;
};
有一个这样的结构体。x,y,是坐标,lv 是它的权。重载
struct lx
{
int x,y,lv;
friend bool operator<(lx a,lx b)
...
分类:
编程语言 时间:
2014-09-19 12:01:05
阅读次数:
236
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:
其他好文 时间:
2014-09-19 05:31:35
阅读次数:
211
#yum install
wget
http://fedora.mirror.nexicom.net/epel/6/x86_64/epel-release-6-8.noarch.rpm
yum -y install epel-release-6-8.noarch.rpm
yum -y install docker-io
#wget install
yum install -y ...
分类:
其他好文 时间:
2014-09-17 12:14:22
阅读次数:
287
译文:
大致意思是将某些端口的数据发送到指定的端口。
原文如下
12.5.2.2
Mirror Port Configuration
Port mirroring is the duplication of traffic from a set of source ports onto a destination port. A mirror
session asso...
分类:
其他好文 时间:
2014-09-16 00:27:19
阅读次数:
258
linux Bridge是内核支持的网桥设备,可以实现简单的交换机功能。现在的需求就是想监听云平台下,云主机所有的流量。我们用的是Bridge,没有使用vswitch这种功能强大的软件设备。通过查阅资料 http://backreferen...
分类:
系统相关 时间:
2014-09-15 17:58:49
阅读次数:
680
直接修改原本的目录暂时没找到办法,但可以通过挂载的方式在原有目录或新建目录改造
如:
[root@luozhonghua /]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_luozhonghua-lv_root
...
分类:
其他好文 时间:
2014-09-14 23:40:47
阅读次数:
290
【实验:按照下述要求安装一台Server】/boot 100M/ 10G/data 50G/var/ftp LVM 6G :/dev/vg_ftp/lv_ftpswap 2048M主机名:server.yimiao.comip:192.168.10.254网络设置为VMNET1关闭防火...
分类:
系统相关 时间:
2014-09-14 16:36:17
阅读次数:
209
KVM真机服务器网卡调整【使用隔离网段】1)将网卡br0设为DHCP获取地址[root@kvmsvr~]#servicenetworkstop
[root@kvmsvr~]#vim/etc/sysconfig/network-scripts/ifcfg-eth0
....
BOOTPROTO=dhcp
....
[root@kvmsvr~]#servicenetworkstart2)添加虚拟网卡network1打开virt-manager..
分类:
其他好文 时间:
2014-09-14 11:33:17
阅读次数:
243
全特技习得条件クレス的必杀技名称习得条件魔神剑LV 2飞燕连脚LV 5袭爪雷斩LV 9秋沙雨LV 12虎牙破斩LV 15柔招来LV 20凤凰天驱LV 23守护方阵LV 27真空破斩LV 31集气法LV 34狮子战吼LV 37刚招来LV 41闪空裂破LV 45红莲剑LV 50次元斩冰之剑入手时虚空苍破...
分类:
其他好文 时间:
2014-09-12 20:41:54
阅读次数:
227
客户端开发步骤(java):本例展示如何在Eclipse环境下使用Axis2创建WebService客户端。一、环境准备(如果你已具备Axis2开发环境,跳过本步骤)1、Axis2 API包本例使用的Axis2版本是1.4,请到以下地址下载:http://apache.mirror.phpchina...
分类:
Web程序 时间:
2014-09-12 18:54:23
阅读次数:
237