摘要:
默认安装路径是: /usr/lib/jvm 阅读全文
摘要:
一.定义 HDFS(Hadoop Distributed File System):它是一个文件系统,用于储存文件,通过目录树来定位文件。同时,它是分布式的,由很多服务器联系起来实现其功能,集群的服务器有各自的角色。 HDFS的使用场景:适合一次写入,多次读入的场景,且不支持文件的修改。适合用来做数 阅读全文
摘要:
1.启动NameNode: hadoop-daemon.sh start namenode 2.启动DataNode: hadoop-daemon.sh start datanode 3.启动Secondary DataNode: hadoop-daemon.sh start secondaryda 阅读全文
摘要:
出现的错误如下: hadoop@mike-VirtualBox:/usr/local/hadoop/hadoop$ ./sbin/start-dfs.sh 20/12/14 20:15:06 WARN util.NativeCodeLoader: Unable to load native-hado 阅读全文
摘要:
当需要进行两次循环嵌套时,我们常常使用双指针法,直接将时间复杂度O(n^2)降低到O(n), 这个是做题时候的一个技巧,一看到两个循环,就需要想到双指针! 写下记录一下,以免之后做题的时候忘记了 阅读全文
摘要:
题目描述: 设计一个支持 push ,pop ,top 操作,并能在常数时间内检索到最小元素的栈。 push(x) —— 将元素 x 推入栈中。pop() —— 删除栈顶的元素。top() —— 获取栈顶元素。getMin() —— 检索栈中的最小元素。 示例: 输入:["MinStack","pu 阅读全文
摘要:
8.1. Creating an Executable Program from Assembly Code The following figure shows an assembly program. You may create this program using a plain text 阅读全文
摘要:
7.1. Types of Instruction Sets The set of instructions that a microprocessor can execute and their structure is generically called its instruction set 阅读全文
摘要:
6.1. The Execution Environment The architecture of a microprocessor consists of several modules that allow the execution of the instructions in its ma 阅读全文
摘要:
5.1. The Clock The circuits implemented only with simple digital gates such as NAND, AND, OR, inverters, etc., are combinational circuits meaning that 阅读全文