码迷,mamicode.com
首页 >  
搜索关键字:sed head tail    ( 45574个结果
UVa10986_Sending email(最短路)(小白书图论专题)
解题报告 思路: 裸裸的最短路。 #include #include #include #include #define inf 0x3f3f3f3f #define N 40000 #define M 100000 using namespace std; struct node { int v,w,next; }edge[M]; int head[N],dis[N],vi...
分类:其他好文   时间:2014-08-23 19:05:51    阅读次数:162
hdu 4971 多校10最大权闭合图
/* 很明显的最大权闭合图题 */ #include #include #include using namespace std; #define N 2100 #define inf 0x3fffffff struct node { int u,v,w,next; }bian[N*N*20]; int head[N],yong,dis[N],work[N]; void init(){ yong=...
分类:其他好文   时间:2014-08-23 16:51:11    阅读次数:251
差分约束+SPFA+栈
#include #include #include #include #define INF 0x3f3f3f3fusing namespace std;struct node{ int u,v,w,next;}edge[150001];int head[30001],dis[30001],...
分类:其他好文   时间:2014-08-23 09:55:10    阅读次数:186
Head first javascript(三)
setTimeout, 单位是毫秒setTimeout ( time code, timer delay );eg:setTimeout("alert('wake up!')", 100000);The document object表示网页代码本身修改用户窗口(不是整个浏览器)的大小,可以用bod...
分类:编程语言   时间:2014-08-23 08:46:10    阅读次数:200
2014.8.22
技术: Linux命令 sed awk http://blog.csdn.net/a81895898/article/details/8482333 RESTFul SOAP 区别 http://www.blogjava.net/diggbag/articles/361703.html
分类:其他好文   时间:2014-08-22 23:46:21    阅读次数:228
win7+cygwin+hadoop+eclipse
1、Cygwin :Net 下的:openssh,opensslBase 下的:sed (若需要Eclipse,必须sed)默认即可Devel 下的:subversion(建议安装) 2、jdk 安装后在根目录解压jdk,并配置到环境变量:export PATH=$PATH:$JAVA...
分类:Windows程序   时间:2014-08-22 23:45:29    阅读次数:298
使Div滚动条始终处于底部
<!DOCTYPEhtmlPUBLIC><html><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>无标题文档</title><scripttype="text/javascript"> functionadd(){ varnow=newDate(); varnowtime=now.getFullYear()+..
分类:其他好文   时间:2014-08-22 18:12:50    阅读次数:157
Head First Java ——我的Java入门书
大二下学期,刚教完C++便开始对自己所学的东西产生质疑。 我们了一年多,学了C,学了C++,学了数据结构可是为什么我所能做的还只是局限于刷OJ呢?(当然OJ刷的也不多)还不如读数媒专科的同学至少能用FLASH做个游戏出来。然后偶然看到舍友的这本书,之前也一直听说Java对工程项目的可用性,所以也就开始了我的Java之路。 之前看过谭浩强的C,浅显易懂,但是总觉得是应试教育的一种...
分类:编程语言   时间:2014-08-22 14:34:09    阅读次数:230
POJ训练计划2983_Is the Information Reliable?(差分约束)
解题报告 思路: 求解: p:a-b=x v:a-b>=1 的方程 #include #include #include #include #define inf 0x3f3f3f3f using namespace std; struct node { int v,w,next; } edge[220000]; int head[1111],dis[1111],vis...
分类:其他好文   时间:2014-08-22 14:29:28    阅读次数:192
Selenium - IWebDriver.SwitchTo() frame 和 Window 的用法
IWebDriver.SwitchTo().Frame(IWebElement frame)如果一个页面是一个html元素, 只有一个head, 一个body, 那么使用IWebDriver.FindElement()查找页面中的任何一个元素都没有问题。但是,由于页面中 frames = drive...
分类:Windows程序   时间:2014-08-22 12:11:56    阅读次数:384
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!