Welcome to My Blog
hbase hbase
在cmd运行的指令 list list all the tables !describe `*table*` return attributes related to the table create `*table*`, `*
2020-05-10
nowcode nowcode
目录排序 3 字符串 5 算法/数据结构 5 队列和栈 8 链表 11 二分搜索 15 二叉树 17 动态规划 22 位运算 25 排列组合 27 大数据 31 排序概况 名称 时间复杂度 空间复杂度 稳定排序 备注 冒泡 O(n
2020-05-10
normal form normal form
NF: normal form,中文叫范式。实质是数据库建表的规则,旨在减少数据库存储的冗赘。 1NF符合1NF的关系中的每个属性都不可再分。 相当于ER-diagram中任何multiple attribute不能独立作为表中单独的一个字
2020-05-10
predicate pushdown predicate pushdown
谓词下推(predicate pushdown)基本策略是,始终将过滤表达式尽可能移至靠近数据源的位置。在传统关系型数据库中,优化关系 SQL 查询的一项基本技术是,将外层查询块的 WHERE 子句中的谓词移入所包含的较低层查询块(例如视图
2020-05-10
python python
变量类型及基本操作赋值方式单个赋值x=1 y=2 多个赋值x, y = 1,2 用列表赋值x, y = [1, 2] 用字符串赋值字符个数需要与对象个数相等,且赋值后对象类型为字符串x, y = ‘12’ 打印调用print()方法时,相当
2020-05-01
php php
注意事项 空格不计 以分号结尾 不区分大小写 使用<?php phpinfo(); ?>检测文件 在php.ini文件中打开错误提示: display_errors = On error_reporting = E_ALL
2020-04-28
matlab matlab
普通语法: %单行注释 在行末加“;”会抑制自动打印功能 disp()相当于打印。disp(sprint(‘%0.2f’, var)控制小数打印位数。 help后直接加指令可以看该指令的指南 load后直接加文件名可以读取文件 save后直
2020-04-25
go go
Introcompiled, statically typed; compiled executables OS specific. some OO features: custom interface, types, structs
2020-04-24
cpp cpp
Data Type and Structuretemplate类似于Java的泛型e.g.: template <typename T> T maxof (const T &a, const T &b){
2020-04-22
c c
要点总结: GNU Compiler Collection也叫gcc,是最流行的C编译器之一。可以在很多操作系统中使用。在命令提示符中使用gcc cards.c -o cards进行编译。编译过后,一个cards.exe文件将出现(Wind
2020-04-16
r r
排序对数据集进行排序的时候,不打乱行之间的联系#sort m by using the order and keep the connections.#Don’t miss the comma after the order.sort_df
2020-04-01
type conversion type conversion
int to String有三种方法,其中第二种第三种效率差不多,要比第一种更快。 a+"" String.valueOf(a) Integer.toString(a) String to int int a = Integer.pars
2020-02-26
5 / 6