摘要: 阅读全文
posted @ 2020-06-06 07:50 hello.world! 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; /* * 内存管理器,分配大块内存供使用,最后集中回收 */ class AllocMem { private: enum {BlockSize = 2048};//buffer尺寸大小 struct Block { 阅读全文
posted @ 2020-06-03 19:36 hello.world! 阅读(297) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <fstream> #include <string> #include <vector> using namespace std; int ReverseInt(int i) { unsigned char ch1, ch2, ch3, c 阅读全文
posted @ 2020-06-03 18:52 hello.world! 阅读(415) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <algorithm> #include "MnistFile.cpp" #include <cmath> using namespace std; const int synapseNums = 800; class Node { publ 阅读全文
posted @ 2020-06-03 18:50 hello.world! 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 简介 hadoop解决问题: 海量数据的存储(HDFS) 海量数据的分析(MapReduce) 资源管理调度(YARN) 受Google三篇论文启发:GFS、MapReduce、BigTable Hadoop功能: 擅长海量离线日志分析 Hadoop如何解决海量数据的存储? 若干被称为Datanod 阅读全文
posted @ 2020-04-07 16:14 hello.world! 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-05 12:40 hello.world! 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-05 11:09 hello.world! 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-05 11:07 hello.world! 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-05 11:06 hello.world! 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-05 11:04 hello.world! 阅读(178) 评论(0) 推荐(0) 编辑