最新 最热

每天5分钟成为老司机 (6) 备胎与女神

上期,我们提到,通过增加冗余设备和冗余链路,能够让企业网络的可靠性大大增加。但是,对于冗余设备和冗余链路造成的环路,需要使用复杂的STP协议,让冗余节点和链路处于冷备状态:...

2022-07-27
1

读写模型整理笔记

常见实现:hash,时间复杂度可以接近 O(1);B 树或变种:时间复杂度接近 O(log(n))。

2022-07-19
1

1. Linux 常用命令

1.1 ctrl c && ctrl u && clearctrl c #取消命令,并且换行ctrl u #清空本行命令clear #清空屏幕----1.2 tabtab #可以补全命令和文件名,补全不了连按两下tab键,显示备选项----1.3 ls && ll && tree &&......

2022-07-11
1

Linux目录相关命令

pwd是print work directory缩写,打印当前所在目录,一般无任何参数

2022-07-07
1

漫画:什么是B-树?

下面来具体介绍一下B-树(Balance Tree),一个m阶的B树具有如下几个特征:

2022-07-05
0

文件系统中的目录与切换操作

另外,cd - 为进入上一次的工作目录,如同 git checout - 切回上次的分支一样。

2022-06-24
0

LeetCode404. Sum of Left Leaves所有左叶节点的和 #算法# 第十四周

Find the sum of all left leaves in a given binary tree.

2022-06-23
1

LeetCode113. Path Sum II 找出二叉树中总值为sum的所有路径 #算法# 第十一周

Given a binary tree and a sum, find all root-to-leaf paths where each path’s sum equals the given sum.

2022-06-23
1

LeetCode112. Path Sum判断二叉树是否存在一条总值为sum的路径 #算法# 第十周

Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. 给定一棵二叉树和su...

2022-06-23
1

Fruit Into Baskets #算法#

In a row of trees, the i-th tree produces fruit with type tree[i]. 有一行树,第i棵树产出tree[i]类型的水果。 You start at any tree of your choice, then repeatedly perform the ...

2022-06-23
1