摘要:
如果我们仔细看的话, 就会发现在VMware软件界面的左下角处显示着 “you don't have VMware Tools installed”,即我们还没安装VMware Tools。 VMware Tools有什么用呢? VMware Tools其实就是虚拟的显卡的驱动程序, 安装以后,虚拟 阅读全文
posted @ 2016-12-10 21:28
王小波私人定制
阅读(7152)
评论(0)
推荐(0)
摘要:
1.#include <stdio.h>#include <stdlib.h>#include "BTree.h"#include "SeqList.h"/* 线索二叉树 */struct Node{ BTreeNode header; char v;};void printf_data(BTree 阅读全文
posted @ 2016-12-10 16:48
王小波私人定制
阅读(430)
评论(0)
推荐(0)
摘要:
1.#include <stdio.h>#include <stdlib.h>#include "BTree.h"#include "LinkQueue.h"/* 主方法 */struct Node{ BTreeNode header; char v;};void printf_data(BTree 阅读全文
posted @ 2016-12-10 16:19
王小波私人定制
阅读(715)
评论(0)
推荐(0)
摘要:
1.#include <stdio.h>#include <stdlib.h>#include "BTree.h"/* run this program using the console pauser or add your own getch, system("pause") or input 阅读全文
posted @ 2016-12-10 16:03
王小波私人定制
阅读(391)
评论(0)
推荐(0)
摘要:
1.#include <stdio.h>#include "GTree.h"/* 主方法 测试 */void printf_data(GTreeData* data){ printf("%c", (int)data);}int main(int argc, char *argv[]){ //创建一棵 阅读全文
posted @ 2016-12-10 15:47
王小波私人定制
阅读(730)
评论(0)
推荐(0)
摘要:
1. #ifndef _TREE_H_#define _TREE_H_ typedef void Tree;typedef void TreeNode; /* 创建树 */Tree* Tree_Create(); /* 销毁已存在的树 */void Tree_Destroy(Tree* tree); 阅读全文
posted @ 2016-12-10 15:15
王小波私人定制
阅读(144)
评论(0)
推荐(0)
摘要:
一、HBase(NoSQL)的数据模型 1.1 表(table),是存储管理数据的。 1.2 行键(row key),类似于MySQL中的主键,行键是HBase表天然自带的,创建表时不需要指定 1.3 列族(column family),列的集合。 一张表中有多个行健,一个行健读取出来的是一条记录, 阅读全文
posted @ 2016-12-10 14:54
王小波私人定制
阅读(705)
评论(0)
推荐(0)
摘要:
下面我们看看HBase Shell的一些基本操作命令,我列出了几个常用的HBase Shell命令,如下: 名称 命令表达式 创建表 create '表名称', '列名称1','列名称2','列名称N' 添加记录 put '表名称', '行名称', '列名称:', '值' 查看记录 get '表名称 阅读全文
posted @ 2016-12-10 14:53
王小波私人定制
阅读(1190)
评论(0)
推荐(0)

浙公网安备 33010602011771号