Skip to content

Commit f360219

Browse files
committed
自平衡树
1 parent f0f080a commit f360219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/data-structures/avl-tree.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Compare, defaultCompare } from '../util';
22
import BinarySearchTree from './binary-search-tree';
33
import { Node } from './models/node';
4-
4+
// 自平衡树
55
const BalanceFactor = {
66
UNBALANCED_RIGHT: 1,
77
SLIGHTLY_UNBALANCED_RIGHT: 2,

0 commit comments

Comments
 (0)