通过查看命令isi statistics system的帮助信息,拼出了下面的命令。isi statistics system list --nodes=all --degraded --format=table --output time,Node,CPU,NetIn,NetOut,DiskIn,... ...
分类:
其他好文 时间:
2018-04-04 20:52:57
阅读次数:
312
An inorder binary tree traversal can be implemented in a non-recursive way with a stack. For example, suppose that when a 6-node binary tree (with the ...
分类:
其他好文 时间:
2018-04-04 20:52:47
阅读次数:
171
An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any ...
分类:
其他好文 时间:
2018-04-04 20:45:18
阅读次数:
160
首先安装步骤 1.首先配置开发环境,看一下电脑里面是否有npm 和 node,没有则安装(最好用新版本),安装完成后检验一下,是否成功安装 检验方式node -v npm -v 2.接下来全局安装npm install -g @angular/cli(angular 脚手架) 3.创建新项目(ng ...
分类:
其他好文 时间:
2018-04-04 20:44:54
阅读次数:
207
xml是实现不同语言或程序之间进行数据交换的协议,跟json差不多,但json使用起来更简单,至今很多公司系统的接口还主要是xml。 ...
分类:
其他好文 时间:
2018-04-04 18:22:27
阅读次数:
220
了不起的Node.js:将JavaScript进行到底 书名:SMASHING Node.js : JavaScript Everywhere 原作者:(美)劳奇 Rauch.G 译者:赵静 出版日期:2014.1 一、安装 在Windows下安装 直接到官网下载安装文件,安装即可。 查看安装版本 ...
分类:
Web程序 时间:
2018-04-04 18:22:19
阅读次数:
225
简介 DevExtreme is a component suite for creating highly responsive web applications for touch devices and traditional desktops. 创建Angular应用 $ ng new De... ...
分类:
Web程序 时间:
2018-04-04 18:21:06
阅读次数:
446
给定一个二叉树,检查它是否是它自己的镜像(即,围绕它的中心对称)。例如,这个二叉树 [1,2,2,3,4,4,3] 是对称的。 1 / \ 2 2 / \ / \3 4 4 3但是下面这个 [1,2,2,null,3,null,3] 则不是: 1 / \ 2 2 \ \ 3 3说明:如果你可以递归地 ...
分类:
其他好文 时间:
2018-04-04 18:11:36
阅读次数:
628
定义hash节点的时候用到了构成双向链表的指针,想起来铮哥前些天说过的内存对齐,于是sizeof()了一下Node*的指针,发现指针是占4字节的,又用int*和char*都测试了一下,发现都是4字节。(我的操作系统是64位的。。。应该是因为我的visual studio软件是32位的原因) 内存对齐 ...
分类:
其他好文 时间:
2018-04-04 18:08:36
阅读次数:
174
职业规划主要参考: https://blog.csdn.net/u012207345/article/details/78188450 短期目标(1年): (1)、SASS (2)、VUE (3)、微信小程序 比长期目标(2年): (1)移动端 (2)Node 长期目标(3年+): (1)大前端(包 ...
分类:
其他好文 时间:
2018-04-04 12:54:09
阅读次数:
140