码迷,mamicode.com
首页 >  
搜索关键字:tmp    ( 7796个结果
LeetCode --- Reverse Integer
题目链接从代码的健壮性考虑, 应该顾及到把数字翻转后发生溢出的情况,但是此题中并没有这种测试数据。附上代码: 1 class Solution { 2 public: 3 int reverse(int x) { 4 int tmp = abs(x); 5 i...
分类:其他好文   时间:2014-05-29 00:26:22    阅读次数:243
UNIX下日志定时清空
最近发现weblogic proxy日志一直增加,达到18G把tmp空间撑满,导致系统无法访问,故设定时任务先拷贝后5000行日志做备份后清空proxy日志。vi wl_proxyclear.shtail -5000 /tmp/wlproxy.log > /weblogic/wlproxy.log ...
分类:其他好文   时间:2014-05-28 01:41:51    阅读次数:345
2014-05-26 总结
php 读写文件1、fopen: 打开文件函数 $fp = fopen("tmp.htm","r");2、fread: 读取文件内容 $str = fread($fp,filesize("tmp.htm"));3、filesize: 读取文件大小,字节为计量单位 $str = fread($fp,....
分类:其他好文   时间:2014-05-28 00:54:04    阅读次数:237
linux 下查看系统内存使用情况的方法
在Windows系统中查看内存的使用情况很简单,想必大家都已经耳熟能详了,那么在linux系统如何查看内存使用情况呢?下面和大家分享在Linux 下查看内存使用情况的free命令: [root@scs-2 tmp]# free total used free shared buffers c...
分类:系统相关   时间:2014-05-26 09:04:17    阅读次数:352
ios粘贴功能
NSString *path = [[NSBundlemainBundle] pathForResource:@"tmp_add"ofType:@"txt"]; NSString *aStr = [NSStringstringWithContentsOfFile:path encoding:N...
分类:移动开发   时间:2014-05-26 08:15:58    阅读次数:258
php算法
1 //插入排序(一维数组) 2 function insert_sort($arr){ 3 $count = count($arr); 4 for($i=1; $i $tmp){ 8 $arr[$j+1] = $arr[$j]; 9 ...
分类:Web程序   时间:2014-05-26 07:52:13    阅读次数:538
mysqldump
MySQLDUMP使用mysqldump -h db1 -u user -P 3306 -ppassword --opt --default-character-set=utf8 --triggers --hex-blob db_name > /tmp/db_name.sql
分类:数据库   时间:2014-05-26 06:50:13    阅读次数:291
最大子序列和问题
算法1 用两个for循环定位子序列的上下界,然后再用最内部的一个for循环求出上下界之间的元素和。 时间复杂度:O(N³)。 代码: int MaxSub(int *a, int n) { int sum = 0; int tmp; for (int i = 0; i < n; i++) { for (int j = i; j <...
分类:其他好文   时间:2014-05-25 21:28:44    阅读次数:243
HDU3306Another kind of Fibonacci(简单矩阵快速幂)
哎,本来是想学学矩阵构造的方法的,,突然发现自己不用看直接就会yy构造。。。 看下右边有什么。。 题目地址:Another kind of Fibonacci AC代码: #include #include #include #include using namespace std; const int mod=10007; int p[4][4],a[4][4],tmp...
分类:其他好文   时间:2014-05-25 18:23:49    阅读次数:268
hadoop源码解读namenode高可靠:HA;web方式查看namenode下信息;dfs/data决定datanode存储位置
点击browserFilesystem,和命令查看结果一样 当我们查看hadoop源码时,我们看到hdfs下的hdfs-default.xml文件信息 我们查找${hadoop.tmp.dir}这是引用变量,肯定在其他文件有定义,在core-default.xml中查看到,这两个配置文件有个共同点: 就是不要修改此文件,但可以复制信息到core-site.xml和hdfs-sit...
分类:Web程序   时间:2014-05-25 02:02:13    阅读次数:388
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!