上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页
摘要: hadoop2.6伪分布式环境安装配置以及配置eclipse开发环境 Hadoop安装教程_单机/伪分布式配_Hadoop2.6.0/Ubuntu14.04 使用Eclipse编译运行MapReduce程序 Hadoop2.6.0_Ubuntu/CentOS 要在 Eclipse 上编译和运行 Ma 阅读全文
posted @ 2017-03-12 23:02 wxquare 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 内容来自:面试宝典 字符串章节 字符串与数字的相互转换 实现strcopy 求一个字符串中连续出现次数最多的子串 求一个字符串中相同且最长的子串 实现strstr 将一句话中的单词进行倒置,标点符号不变。比如一句话:i come from tiamjin. 倒换后称为 tianjin. from c 阅读全文
posted @ 2017-03-10 16:23 wxquare 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 本文总结了四种字符串和数字相互转换的方法,方法一和方法二是c++中的方法,方法三和方法四是C语言库函数的方法。 方法一:c++11中string中添加了下面这些方法帮助完成字符串和数字的相互转换 stod stof stoi stol stold stoll stoul stoull 函数原型:fl 阅读全文
posted @ 2017-03-10 09:31 wxquare 阅读(8502) 评论(0) 推荐(0) 编辑
摘要: 来源:Hadoop Metrics2 Metrics are collections of information about Hadoop daemons, events and measurements; for example, data nodes collect metrics such 阅读全文
posted @ 2017-03-06 17:46 wxquare 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: 参考:百科kd-tree 阅读全文
posted @ 2017-03-03 16:26 wxquare 阅读(1059) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 9 using namespace std; 10 11 typedef unsigned long int uint64_t; 12 13 //获取字符串的hash值 14 u... 阅读全文
posted @ 2017-02-28 14:38 wxquare 阅读(889) 评论(0) 推荐(0) 编辑
摘要: 一.deque的中控器 deque是连续空间(至少逻辑上看来如此),连续线性空间总令我们联想到array或vector。array无法成长,vector虽可成长,却只能向尾端成长,而且其所谓的成长原是个假象,事实上是(1)另觅更大空间;(2)将原数据复制过去;(3)释放原空间三部曲。如果不是vect 阅读全文
posted @ 2017-02-20 10:44 wxquare 阅读(666) 评论(0) 推荐(0) 编辑
摘要: Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area. For example, given the following 阅读全文
posted @ 2016-12-22 23:37 wxquare 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist 阅读全文
posted @ 2016-12-22 23:36 wxquare 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word. Return all such p 阅读全文
posted @ 2016-12-13 20:55 wxquare 阅读(207) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 27 下一页