题目:http://poj.org/problem?id=1265题意:题目解析:#include #include #include #include #include #include #define inf 0x3f3f3f3f#define eps 1e-9typedef long long...
分类:
其他 时间:
2015-02-05 21:50:07
收藏:
0 评论:
0 赞:
0 阅读:
190
一、回调函数function f1(callback){ setTimeout(function () { // f1的任务代码 callback(); }, 1000);}f1(f2);优点是简单、容易理解和部署,缺点是不利于代码的阅读和维护,各个部分之间高...
分类:
其他 时间:
2015-02-05 21:49:47
收藏:
0 评论:
0 赞:
0 阅读:
223
锚点是定位和变换操作的一个重点。锚点我们能够看成用一根图钉将一张纸或者相片钉在墙上的那个点。节点的位置是由我们设置的position和anchorpoint一起决定的。值得一提的是,anchorpoint的默认位置Layer的是左下,而其它的node是中点。节点的原点是父节点的左下角。 CCLaye...
分类:
其他 时间:
2015-02-05 21:49:37
收藏:
0 评论:
0 赞:
0 阅读:
325
最主要的Vertex类:#ifndef VERTEX_H#define VERTEX_H#include #include #define INF INT_MAXclass Vertex{public: int ID; Vertex* parent; int d; Vertex(int id) : ...
分类:
其他 时间:
2015-02-05 21:49:27
收藏:
0 评论:
0 赞:
0 阅读:
316
Description描述CIA has decided to create a special telephone directory for its agents. The first 2 pages of the directory contain the name of the direct...
分类:
其他 时间:
2015-02-05 21:49:17
收藏:
0 评论:
0 赞:
0 阅读:
373
1. size_type find_first_of( const basic_string &str, size_type index = 0 );查找在字符串中第一个与str中的某个字符匹配的字符,返回它的位置。搜索从index开始,如果没找到就返回string::npos2.string& r...
分类:
编程语言 时间:
2015-02-05 21:48:57
收藏:
0 评论:
0 赞:
0 阅读:
316
1077. Kuchiguse (20)时间限制100 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者HOU, QimingThe Japanese language is notorious for its sentence ending particles. ...
分类:
其他 时间:
2015-02-05 21:48:37
收藏:
0 评论:
0 赞:
0 阅读:
354
char* ——》 CStirngvoid CharToCString(CString& str, char *chr){ CString pWideChar=_T(""); // 计算char *数组大小,以字节为单位,一个汉字占两个字节 int charLen = str...
分类:
其他 时间:
2015-02-05 21:48:18
收藏:
0 评论:
0 赞:
0 阅读:
299
1:SBCS (single byte character set)单字节字符集。在这种编码格式下,所有字符都用一个字节表示。ASCII码就是单字节字符。用“0”来表示一个字节的结束。2 :Unicode 是一种所有的字符都使用两个字节编码的编码模式。Unicode 字符有时也被称作 宽字符。3:M...
分类:
其他 时间:
2015-02-05 21:48:07
收藏:
0 评论:
0 赞:
0 阅读:
252
1815: [Shoi2006]color 有色图Time Limit: 4 SecMemory Limit: 64 MBSubmit: 136Solved: 50[Submit][Status]Description Input输入三个整数N,M,P1#include#include#includ...
分类:
其他 时间:
2015-02-05 21:47:47
收藏:
0 评论:
0 赞:
0 阅读:
523
很容易就想到把三维转化成了二维,求出点离Z轴的距离,把这个距离当成X坐标,Z轴当Y坐标,然后就变成了求一个直角三角形覆盖这些点像上一题一样,确定斜率直线的时候,必定是有一点在线上的。于是,可以把直线看成垂直X轴,按角度旋转点即可。也有二分高度的做法。#include #include #includ...
分类:
其他 时间:
2015-02-05 21:47:27
收藏:
0 评论:
0 赞:
0 阅读:
319
回顾下在工作中遇到iframe跨域自动适应高度的解决方法,在网上有找了一个例子http://www.studyofnet.com/news/256.html 这里提供一个Iframe代理的方法,简单地说一下原理:假设有3个页面,分别是主页面A.html,字页面B.html,代理页面C.html;其中...
分类:
其他 时间:
2015-02-05 21:47:17
收藏:
0 评论:
0 赞:
0 阅读:
278
在Ubuntu 13.04下的安装eclipse - 夏雪冬日 - 博客园一、eclipse安装过程首先确保在安装eclipse之前已经安装好Java虚拟机1. eclipse官网下载压缩包下载地址:http://www.eclipse.org/downloads/?osType=linux&rel...
分类:
系统服务 时间:
2015-02-05 21:47:07
收藏:
0 评论:
0 赞:
0 阅读:
295
zabbix服务器源码安装参看官方文档这里不做过多的翻译,我的系统是centos6.5,安装的时候是base安装,所以要装一些其他依赖包,除此之外,还有一些php插件:extension=bcmath.soextension=gd.soextension=gettext.soextension=my...
分类:
其他 时间:
2015-02-05 21:46:57
收藏:
0 评论:
0 赞:
0 阅读:
358
//---基于邻接表的bfs #include #include #include #include #include #include using namespace std; struct node { int date; struct node *next; ...
分类:
其他 时间:
2015-02-05 21:46:47
收藏:
0 评论:
0 赞:
0 阅读:
298
7: BZOJ 1031: [JSOI2007]字符加密Cipher 算入门后坠数组了sa 和rank数组老师弄混乱 ;题目是求排好序最后一个字母错看成:求拍好序后最后一个字符串。。熟悉rank和sa定义的很快出来CODE:1031: #include #include #include #incl...
分类:
Web开发 时间:
2015-02-05 21:46:38
收藏:
0 评论:
0 赞:
0 阅读:
539
打开cmd1.查看所有进程占用的端口输入:netstat –ano(查看所有进程,查找相应占用端口的程序的pid)直接查看占用指定端口的程序的pid输入:netstat -ano|findstr "指定端口号"(例如:netstat -ano|findstr 8080)2.根据pid查找进程名称ta...
分类:
系统服务 时间:
2015-02-05 21:46:27
收藏:
0 评论:
0 赞:
0 阅读:
456
【Unity加载二进制数据】 The first step is to save your binary data file with the ".bytes" extension.unitywill treat this file as aTextAsset. As a TextAsset th....
分类:
编程语言 时间:
2015-02-05 21:46:17
收藏:
0 评论:
0 赞:
0 阅读:
521
[self AAAA:^(BOOL isSuccessed, id userInfo, NSString *errorMsg) { NSLog(@"AAAA: %d, userInfo: %@ errorMsg: %@", isSuccessed, userInfo, errorMsg);}];.....
分类:
其他 时间:
2015-02-05 21:46:07
收藏:
0 评论:
0 赞:
0 阅读:
263
jQuery核心的方法有两个:1、$.extend(object)可以理解为jQuery添加一个静态方法。2、$.fn.extend(object)可以理解为jQuery实例添加一个方法。基本的使用$.extend({ fun1: function() { ale...
分类:
Web开发 时间:
2015-02-05 21:45:57
收藏:
0 评论:
0 赞:
0 阅读:
438