上一页 1 2 3 4 5 6 7 ··· 57 下一页

2015年11月13日

shell uniq sort -u 去重排序

摘要: sort -u 和 uniq都能起到删除重复信息的功能,那么他们的区别究竟在哪呢?$ cat test jasonjasonjasonfffffjason下面分别执行三个命令1:sort -u testsort -u testfffffjason2: uniq test$u... 阅读全文

posted @ 2015-11-13 17:34 雨渐渐 阅读(1130) 评论(0) 推荐(0) 编辑

2015年11月11日

python 基于小顶堆实现随机抽样

摘要: 起因:之前用蓄水池抽样,算法精简,但直观性很差。 所以这次采用了简单的,为没一个行,赋值一个随机值,然后取 最大的K个作为,随机样本。基本思路:为每一个行(record,记录,实体) 赋一个random值。 每个map取一个Top K 值。 由于是求topk,可以设置一个reduce,再求 Top ... 阅读全文

posted @ 2015-11-11 13:58 雨渐渐 阅读(1038) 评论(0) 推荐(0) 编辑

2015年11月9日

c++ 原子操作

摘要: 转载自:http://blog.csdn.net/yockie/article/details/8838686 所谓的原子操作,取的就是“原子是最小的、不可分割的最小个体”的意义,它表示在多个线程访问同一个全局资源的时候,能够确保所有其他的线程都不在同一时间内访问相同的资源。也就是他确保了在同一时刻... 阅读全文

posted @ 2015-11-09 09:41 雨渐渐 阅读(4406) 评论(0) 推荐(1) 编辑

2015年11月5日

c++ 格式化printf

摘要: 类型为uint64_t的变量,使用printf进行打印时,需要区分操作系统:64位系统:使用%ld32位系统:使用%llu#include#include int64_t a = 9102928374747474; int main(void) { std::cout << a << std::en... 阅读全文

posted @ 2015-11-05 11:21 雨渐渐 阅读(677) 评论(0) 推荐(0) 编辑

c++ 单例模式

摘要: class C{private: C();public: static C* get_instance();}待测 阅读全文

posted @ 2015-11-05 09:41 雨渐渐 阅读(117) 评论(0) 推荐(0) 编辑

2015年11月4日

c++ 时间格式化

摘要: struct tm tm_time; strptime(time.c_str(), "%Y%m%d %H:%M:%S", &tm_time); time_t tt = mktime(&tm_time);mktime() python time模块也有这个函数。-------------------- 阅读全文

posted @ 2015-11-04 19:09 雨渐渐 阅读(548) 评论(0) 推荐(0) 编辑

c++ read

摘要: #include #include int main(void) { char url[1000] = {0}; int buff_len = 1000; std::ifstream read("./urls"); if (!read) { // 这跟python语法相似啊 ... 阅读全文

posted @ 2015-11-04 04:48 雨渐渐 阅读(1728) 评论(0) 推荐(0) 编辑

2015年10月30日

c++ 时间与字符串转换

摘要: 1、时间转字符串函数size_t strftime( char *strDest, size_t maxsize, const char *format, const struct tm *timeptr );2、字符串转时间函数char *strptime(const char *s, const... 阅读全文

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

2015年10月27日

c++ switch case

摘要: http://www.cnblogs.com/RealOnlyme/articles/2579628.html 阅读全文

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

2015年9月28日

HIVE Transform using 用法

摘要: select TRANSFORM(*, *, *)using 'python filter.py'as (*, *, *)from t_1HIVE支持pipe操作,将select出来的字段,用我们的脚本进行“操作”1, 分隔符为 \t 并没有采用hive原有的分隔符 \x01 之类的。 阅读全文

posted @ 2015-09-28 14:51 雨渐渐 阅读(1894) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 57 下一页

导航