Skip to content

Commit 09dee38

Browse files
author
ssjssh
committed
修改一些文件名,添加一些TODO
1 parent 9f0e76f commit 09dee38

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

src/ssj/heap/fibonacci_heap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
class FibonacciHeap(object):
7-
"""实现斐波那契堆,斐波那契堆在一些操作执行的时候负责度比较低,而其他操作的复杂度和普通的堆是一样的"""
7+
"""实现斐波那契堆,斐波那契堆在一些操作执行的时候复杂度比较低,而其他操作的复杂度和普通的堆是一样的"""
88

99
class Node(object):
1010
"""节点实现"""

src/ssj/tree/avltree.py renamed to src/ssj/tree/avl_tree.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
__author__ = 'shenshijun'
44

55

6+
# TODO 实现
67
class AVLTree(object):
78
""""""
89

File renamed without changes.
File renamed without changes.

src/ssj/tree/bplus_tree.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# TODO实现B+树
2+
class BplusTree:
3+
def __init__(self):
4+
pass
5+
6+
pass

src/ssj/tree/tries.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
__author__ = 'shenshijun'
44

55

6+
# TODO实现
67
class Tries(object):
78
"""
89
字符串前缀树实现

0 commit comments

Comments
 (0)