到年终了,手里活不多了,平时就想着将平时一些常用的命令整合一下,于是下面的一个小小脚本就出来了。。。。好了,直接上菜:@echo offcolor 0amode con cols=90 lines=25:beginecho -------------------------工具使用说明-------...
句柄handle 分为文件句柄和目录句柄,文件句柄实际上包含文件,进程和套接字的读写。文件句柄的操作步骤open(FD,"filename");@lines=;close(FD);open()由以下几个用法open(FD,"> filename") 写数据进文件open(FD,">> filenam...
分类:
其他好文 时间:
2015-02-09 19:55:50
阅读次数:
172
lua 中pairs 和 ipairs区别标准库提供了集中迭代器,包括迭代文件每行的(io.lines),迭代table元素的(pairs),迭代数组元素的(ipairs),迭代字符串中单词的 (string.gmatch)等等。LUA手册中对与pairs,ipairs解释如下:ipairs (t)...
分类:
其他好文 时间:
2015-02-09 15:27:58
阅读次数:
115
1.复数的向量:用complex()函数生成复数向量EX:> x y z plot(z);lines(z)%绘制图形运行如下:2.向量的下标运算R软件提供了十分灵活的访问向量元素和向量子集的功能,x向量的某一个元素可以用x[i]格式访问EX:> x x[2][1] 4> (c(1,3,5)+5)[2...
分类:
编程语言 时间:
2015-02-08 11:36:29
阅读次数:
262
题意:给出一个序列,删掉它的一个连续子序列(该子序列可以为空),使得剩下的序列有最长的连续严格递增子序列。分析:这个可以看作lrj的《训练指南》P62中讲到的LIS的O(nlogn)的优化变形过来的问题。预处理:Li是第i个元素Ai向左延伸的最大长度,即[i, i + Li - 1]是一个递增区间同...
分类:
其他好文 时间:
2015-02-07 18:46:50
阅读次数:
170
题目描述:Container With Most WaterGivennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn s...
分类:
其他好文 时间:
2015-02-07 15:53:27
阅读次数:
141
题目:POJ1269题意:给你两条直线的坐标,判断两条直线是否共线、平行、相交,若相交,求出交点。思路:直线相交判断、如果相交求交点。首先先判断是否共线,之后判断是否平行,如果都不是就直接求交点了。#include #include #include #include #include #inclu...
分类:
其他好文 时间:
2015-02-07 11:27:12
阅读次数:
105
Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of ...
分类:
其他好文 时间:
2015-02-05 21:41:14
阅读次数:
160
题目描述:Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two ...
分类:
其他好文 时间:
2015-02-05 10:56:24
阅读次数:
173
先看一个例子:int lines, i;
int left, right;
string strleft, strright;
pNode tPointerArray[MaxNum];
pNode tPointer;
bool flag[MaxNum] = {false};
cin >> lines;
for ( i = 0; i < lin...
分类:
其他好文 时间:
2015-02-04 23:30:36
阅读次数:
356