#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int head[50];
int tail;
int dis[50];
struct Edge
{
int to,next;
}edge[1000];
void add(in...
分类:
其他好文 时间:
2014-11-05 19:45:40
阅读次数:
226
使用标准模板库(STL)中的标准模板 std::vector,可以让我快速的使用邻接链表。一些基本的用法如下:#include #include #include using namespace std;struct Edge{ //定义结构体,用来表示一条边 int ne...
分类:
其他好文 时间:
2014-11-05 19:23:10
阅读次数:
325
边缘传输服务角色对大家来说应该并不陌生了,特别是对Lync比较熟悉的朋友们。在企业中部署LyncServer产品时,边缘角色是必须部署的。但是在Exchange中,反而很少企业会部署边缘角色,至于为什么就得好好看看边缘服务器在Exchange和Lync中的作用和有不同了。接下来我们一起分析..
分类:
其他好文 时间:
2014-11-04 19:55:29
阅读次数:
389
谁说没有显示器就不能玩树莓派的图形界面了。不要忘了VNC服务器哦!
VNC(Virtual Network Computing)属于一种网络显示系统,也就是说它能将完整的窗口界面通过网络传输到另一台计算机的屏幕上,实现以图形界面的形式去操作、查看远程的计算机。
VNC分为VNC服务器(VNC Server)和VNC客户端(VNC Viewer)。要实现通过PC机远程操作和查看树莓派的图形界面,需要在树莓派上安装VNC Server。...
分类:
其他好文 时间:
2014-11-01 16:24:41
阅读次数:
276
父窗口 创建一个窗口var backinfo = window.showModalDialog('UserSelect.aspx', '', 'dialogHeight=600px; dialogWidth= 600px; edge=Raised; center=Yes;resizable= No;...
openstackinstallsystemversion:centos6.5_64openstackcontroller:192.168.1.123openstackcentos6.5_64(具体实施环境中要修改为openstackcontroller端的IP地址)openstackcontroller:192.168.1.124nodecentos6.5_64(具体实施环境中要修改为openstackcomputingnode端的IP地址..
分类:
其他好文 时间:
2014-10-29 19:51:00
阅读次数:
350
Edge.js能够让开发者在JavaScript中调用C#的接口,提高应用的扩展能力。这里介绍如何调用C#接口获取图片数据,并通过Node.js搭建的WebSocket server发送到Web客户端。 参考:How to Use Edge.js to Empower WebSo...
分类:
编程语言 时间:
2014-10-28 12:26:05
阅读次数:
241
为了在浏览器中显示更好的处理效果,一般会设置 html 元信息(meta)的http-equiv <meta?http-equiv="X-UA-Compatible"?content="IE=Edge,chrome=1.0"/> 这句代码指示浏览器按照当前最新版本显示 但这与解决IE6 p...
分类:
其他好文 时间:
2014-10-28 02:16:52
阅读次数:
188
program bzoj1023;uses math;const inf=1000000000; maxn=50005; maxm=20000005; type edge=record togo,next:longint;end; var n,m,cnt,ind,ans...
分类:
其他好文 时间:
2014-10-27 19:16:23
阅读次数:
203
1. 基本命令http://mally.stanford.edu/~sr/computing/basic-unix.htmlhttp://pangea.stanford.edu/computing/unix/shell/commands.phphttp://infohost.nmt.edu/tcc/...
分类:
编程语言 时间:
2014-10-27 12:15:51
阅读次数:
213