自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (1)
  • 收藏
  • 关注

翻译 binary tree traversal

- Preorder traversal   root -> left -> right- Inorder traversal   left -> root -> right- Postorder traveral   left -> right -> rootorder means root node's order.  examplepreorder

2017-12-17 17:26:20 153

转载 add maven dependencies to eclipse run

mvn -Declipse.workspace=d:\wks eclipse:configure-workspace

2017-12-13 13:14:16 130

翻译 AVL tree

self balancing tree, named after their inventors, Adelson-Velskii and Landis.- difference between heights of left node and right node should be less than or equal to one- the height of balanced tr

2017-12-12 15:05:46 183

翻译 Red Black Tree

self balancing search tree (BST)- every node has a color either black or red- root node is always black- no two adjacent red nodes. red node always have black children if any- the numbers of b

2017-12-11 15:43:15 132

转载 Queue

name offer peak poll comments PriorityQueue o(log(n)) o(1) o(log(n)) priority heap backed by array, reference:http://blog.csdn.net/pecywang/article/details/24024835 http://www.jianshu.

2017-12-03 17:30:34 120

mongodb architecture

latest mongodb architecture guide latest mongodb architecture guide

2018-07-27

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除