这个系统帮助公司快速给用户提供技术支持,我们作为云服务公司,不仅提供了一流的技术,也提供了一流的服务。这个系统基于公司的云服务,只用了少量的代码。...
分类:
其他好文 时间:
2014-08-22 12:58:18
阅读次数:
213
解题报告
题意:
求0到1所有路中最大值最小的那个数。
思路:
floyd。
#include
#include
#include
#include
#define inf 0x3f3f3f3f
using namespace std;
int n,m,q;
double mmap[210][210];
struct node {
double x,y;
} p[210]...
分类:
其他好文 时间:
2014-08-22 01:39:55
阅读次数:
275
首先安装sublime text3,百度一堆,自己找吧。理论上sublime text2应该也可以。我只能说一句:这个软件实在是太强悍了。 跨平台,丰富的插件体系,加上插件基本上就是一个强悍的ide了。目前我在使用的主要是Emmet、Python、还有一些格式化的插件(xml,json),加上这次安...
1, LinkedListcomposed of one and one Node: [data][next].[head] ->[data][next] ->[data][next] ->[data][next] -> [null].Empty linkedList: head == null.V...
分类:
其他好文 时间:
2014-08-21 22:46:14
阅读次数:
229
//来自潘神的优化
#include
#include
#include
using namespace std;
#define inf 0x3fffffff
#define N 1100
struct node {
int u,v,w,next;
}bian[N*N*4];
int head[N],yong,dis[N],work[N];
void init(){
yong=0;
memset...
分类:
其他好文 时间:
2014-08-21 21:13:14
阅读次数:
238
#include
#include
#include
using namespace std;
#define maxx 100050
struct node
{
int a,b,id;
}g[maxx];
int root[maxx];
int id[maxx];
int len;
void output(int x)
{
if(x==-1)return;
outp...
分类:
其他好文 时间:
2014-08-21 17:12:34
阅读次数:
174
前言本章将主要介绍使用Node.js开发web应用可能面临的安全问题,读者通过阅读本章可以了解web安全的基本概念,并且通过各种防御措施抵御一些常规的恶意攻击,搭建一个安全的web站点。在学习本章之前,读者需要对HTTP协议、SQL数据库、Javascript有所了解。什么是web安全在互联网时代,...
分类:
Web程序 时间:
2014-08-21 14:59:44
阅读次数:
454
http模块提供了两个常用的功能, 创建一个http server和做http请求.创建一个http servervar http = require('http');var server = http.createServer();server.on('request', function(req...
分类:
Web程序 时间:
2014-08-21 14:39:34
阅读次数:
154
节点解释:节点是场景图的基本元素。场景图的基本元素必须是节点对象或者是节点对象的子类。其中主要可以看到Layer、MenuItem、Scene、Sprite、TMXTiledMap(解析and渲染TMX地图)、ParticleSystem(粒子系统基类)等等Node是这些类的根类节点的基本操作创建节...
分类:
其他好文 时间:
2014-08-21 09:39:23
阅读次数:
181