上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 57 下一页

2015年3月21日

c++ 文件读写

摘要: 1 文件写#includeusing namespace std;int main(){ ofstream out("w.txt"); if(out.is_open()) { out #includeusing namespace std;int main(){ char buff[256];... 阅读全文

posted @ 2015-03-21 21:15 雨渐渐 阅读(181) 评论(0) 推荐(0) 编辑

2015年3月20日

指针的详解

摘要: 1 NULL指针2 指针的算数运算3 指针 VS 数组4 指针数组5 指向指针的指针6 传递指针给函数7 从函数返回指针1 NULL 指针#include using namespace std;int main(){ //如果没有确切的地址可以赋值,为指针变量赋一个 NULL 值是一个良好的... 阅读全文

posted @ 2015-03-20 18:35 雨渐渐 阅读(246) 评论(0) 推荐(0) 编辑

有意思

摘要: 公式为:(id = crc32(key) % 1024),其中key是url字符串,比如:"http://www.baidu.com",问id=?id = CRC32(key) % 1024,来自豌豆荚codis中设置 server group 服务的 slot id 的选举公式:(Slot Id ... 阅读全文

posted @ 2015-03-20 15:51 雨渐渐 阅读(160) 评论(0) 推荐(0) 编辑

2015年3月19日

函数 传值调用 指针调用 引用调用

摘要: #include using namespace std;int max(int num1, int num2);void swap(int *x, int *y);void swap(int &x, int &y);int main(){ cout num2) return ... 阅读全文

posted @ 2015-03-19 17:09 雨渐渐 阅读(257) 评论(0) 推荐(0) 编辑

python 装饰器

摘要: http://www.cnblogs.com/rhcad/archive/2011/12/21/2295507.html 阅读全文

posted @ 2015-03-19 16:52 雨渐渐 阅读(83) 评论(0) 推荐(0) 编辑

2015年3月18日

对象

摘要: :: 作用域解析符,告诉方法属于哪一个类 阅读全文

posted @ 2015-03-18 23:38 雨渐渐 阅读(83) 评论(0) 推荐(0) 编辑

指针 取地址& 解引用 *

摘要: #includeusing namespace std;int main(){ int a = 123; float b = 3.14; char c = 'C'; unsigned long d = 19880808; string e = "i love fishc... 阅读全文

posted @ 2015-03-18 22:48 雨渐渐 阅读(428) 评论(0) 推荐(0) 编辑

2015年3月11日

awk 的一个奇怪异常

摘要: awk: cmd. line:1: (FILENAME=- FNR=192) fatal: print to "standard output" failed (No space left on device)1045827 awk: cmd. line:1: (FILENAME=- FNR=218... 阅读全文

posted @ 2015-03-11 10:34 雨渐渐 阅读(1322) 评论(0) 推荐(0) 编辑

2015年3月10日

kill 进程卡住,超时kill方法

摘要: 还是有漏洞 ,万一 working.py未超时, kill_job.sh 会不会杀死别人的进程啊start.sh#!/bin/bashpython working.py &python working.py &python working.py &pids=$(jobs -p)echo $pids... 阅读全文

posted @ 2015-03-10 17:10 雨渐渐 阅读(632) 评论(0) 推荐(0) 编辑

mapreduce 多路输出

摘要: Streaming支持多路输出(SuffixMultipleTextOutputFormat)如下示例:hadoop streaming \-input /home/mr/data/test_tab/ \-output /home/mr/output/tab_test/out19 \-outputf... 阅读全文

posted @ 2015-03-10 00:01 雨渐渐 阅读(777) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 57 下一页

导航