DFS recursive: since this is called tail recursion, you are recommended to do it in interative: time: O(n) space: O(1) Interative: ...
分类:
其他好文 时间:
2018-03-27 10:23:32
阅读次数:
179
一、前言 部门去年年中开始各种改造,第一步是模块服务化,这边初选dubbo试用在一些非重要模块上,慢慢引入到一些稍微重要的功能上,半年时间,学习过程及线上使用遇到的些问题在此总结下。 整理这篇文章差不多花了两天半时间,请尊重劳动成果,如转载请注明出处http://blog.csdn.net/hzzh ...
分类:
其他好文 时间:
2018-03-27 10:23:23
阅读次数:
249
// this code is not right. needs to be updated ...
分类:
其他好文 时间:
2018-03-27 10:23:17
阅读次数:
134
这里说个简单的使用OpenGL的方法, 准备工作 1:OpenGL代码,没有的话,可以去http://freeglut.sourceforge.net/index.php#download 这里下载一个,freeglut 主要是使用起来方便很多, 2:cmake编译工具,没有的话,可以去https: ...
分类:
其他好文 时间:
2018-03-27 10:23:05
阅读次数:
169
本节内容: 1:流程控制语句分类 2:分支语句之if的使用 3:分支语句之switch的使用 4:分支语句之三位运算符 5:分支语句比较 1:流程控5:制语句分类 2:分支语句之if 3:分支语句之switch 4:分支语句之三位运算符 实例 5:三种分支语句的比较 ...
Find the target key K in the given binary search tree, return the node that contains the key if K is found, otherwise return null. Assumptions There a... ...
分类:
其他好文 时间:
2018-03-27 10:22:51
阅读次数:
130
CSS 的使用 内联(inline style attribute) <head> 标签内的 <style> 标签 <link> 标签中的外联 三种主要的选择器 元素选择器 class 选择器 id 选择器 样式优先级(从高到低) !important 内联样式 按顺序执行 选择器优先级(从高到低) ...
分类:
Web程序 时间:
2018-03-27 10:22:43
阅读次数:
232
前两天,在忙一个东西,逆Win10设置默认浏览器的一个算法, 这个算法是设置Win10操作系统最新版本的默认浏览器,所以肯定是微软自己的算法,360要么有源码,要么逆向出来的。 因为,涉及到一些不该说的东西,所以我就不贴代码了,微软的那个算法应该是叫CS64吧,应该不是公开的,管他呢,反正我就这么叫 ...
分类:
其他好文 时间:
2018-03-27 10:22:37
阅读次数:
122
一. 基本概念 1.1 DOM DOM(Document Object Model), 把网页转换成JS对象,可以用脚本进行各种操作。浏览器将结构化文档(HTML/XML)解析成一系列的节点形成DOM tree。所有的节点和最终的树状结构都有API。 1.2 节点类型 文档节点(document): ...
分类:
其他好文 时间:
2018-03-27 10:22:28
阅读次数:
175
参考:https://docs.oracle.com/javase/specs/jls/se7/html/jls-16.html This pass implements dataflow analysis for Java programs.Liveness analysis checks tha ...
分类:
其他好文 时间:
2018-03-27 10:22:21
阅读次数:
179
Establish 1) A->B, Syn message include sequence number X 2) B->A, Ack with X+1 and Syn with sequence number Y 3) A-> Ack with Y+1 Finsih 1) A-> B FIN ...
分类:
其他好文 时间:
2018-03-27 10:22:11
阅读次数:
161
北京时间9月30日凌晨在美国旧金山举行2015年秋季新品公布会。在公布会上代号为“Marshmallow(棉花糖)”的安卓6.0系统正式推出。新系统的总体设计风格依旧保持扁平化的MeterialDesign风格。Android6.0在对软件体验与执行性能上进行了大幅度的优化。安卓权限系统被又一次设计 ...
分类:
移动开发 时间:
2018-03-27 10:22:02
阅读次数:
227
CentOS-7 下安装docker 原文地址:https://www.cnblogs.com/yufeng218/p/8370670.html 一、安装docker 1、Docker 要求 CentOS 系统的内核版本高于 3.10 ,查看本页面的前提条件来验证你的CentOS 版本是否支持 Do ...
分类:
其他好文 时间:
2018-03-27 10:21:55
阅读次数:
139
Connection ...
分类:
其他好文 时间:
2018-03-27 10:21:48
阅读次数:
158
Concept Learning supervised, eager learning target problem: whether something belongs to the target concept or not Find S Algorithm 这个算法得到的是对于数据集最贴切的描 ...
分类:
其他好文 时间:
2018-03-27 10:21:41
阅读次数:
129
一行有 11 个像素(Width = 11), 对一个 32 位(每个像素 4 字节)的图像, Stride = 11 * 4 = 44. 但还有个字节对齐的问题, 譬如: 一行有 11 个像素(Width = 11), 对一个 24 位(每个像素 3 字节)的图像, Stride = 11 * 3 ...
分类:
其他好文 时间:
2018-03-27 10:21:33
阅读次数:
214
Reverse bits of a given 32 bits unsigned integer. For example, given input 43261596 (represented in binary as 00000010100101000001111010011100), retur ...
分类:
其他好文 时间:
2018-03-27 10:21:26
阅读次数:
193