forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
design-in-memory-file-system.py
82 lines (60 loc) · 1.84 KB
/
design-in-memory-file-system.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Time: ls: O(l + klogk), l is the path length, k is the number of entries in the last level directory
# mkdir: O(l)
# addContentToFile: O(l + c), c is the content size
# readContentFromFile: O(l + c)
# Space: O(n + s), n is the number of dir/file nodes, s is the total content size.
class TrieNode(object):
def __init__(self):
self.is_file = False
self.children = {}
self.content = ""
class FileSystem(object):
def __init__(self):
self.__root = TrieNode()
def ls(self, path):
"""
:type path: str
:rtype: List[str]
"""
curr = self.__getNode(path)
if curr.is_file:
return [self.__split(path, '/')[-1]]
return sorted(curr.children.keys())
def mkdir(self, path):
"""
:type path: str
:rtype: void
"""
curr = self.__putNode(path)
curr.is_file = False
def addContentToFile(self, filePath, content):
"""
:type filePath: str
:type content: str
:rtype: void
"""
curr = self.__putNode(filePath)
curr.is_file = True
curr.content += content
def readContentFromFile(self, filePath):
"""
:type filePath: str
:rtype: str
"""
return self.__getNode(filePath).content
def __getNode(self, path):
curr = self.__root
for s in self.__split(path, '/'):
curr = curr.children[s]
return curr
def __putNode(self, path):
curr = self.__root
for s in self.__split(path, '/'):
if s not in curr.children:
curr.children[s] = TrieNode()
curr = curr.children[s]
return curr
def __split(self, path, delim):
if path == '/':
return []
return path.split('/')[1:]