Leetcode Remove Sub-Folders from the Filesystem

231 篇文章 0 订阅
120 篇文章 1 订阅

Given a list of folders, remove all sub-folders in those folders and return in any order the folders after removing.

If a folder[i] is located within another folder[j], it is called a sub-folder of it.

The format of a path is one or more concatenated strings of the form: / followed by one or more lowercase English letters. For example, /leetcode and /leetcode/problems are valid paths while an empty string and / are not.

 

Example 1:

Input: folder = ["/a","/a/b","/c/d","/c/d/e","/c/f"]
Output: ["/a","/c/d","/c/f"]
Explanation: Folders "/a/b/" is a subfolder of "/a" and "/c/d/e" is inside of folder "/c/d" in our filesystem.

Example 2:

Input: folder = ["/a","/a/b/c","/a/b/d"]
Output: ["/a"]
Explanation: Folders "/a/b/c" and "/a/b/d/" will be removed because they are subfolders of "/a".

Example 3:

Input: folder = ["/a/b/c","/a/b/ca","/a/b/d"]
Output: ["/a/b/c","/a/b/ca","/a/b/d"]

 

Constraints:

  • 1 <= folder.length <= 4 * 10^4
  • 2 <= folder[i].length <= 100
  • folder[i] contains only lowercase letters and '/'
  • folder[i] always starts with character '/'
  • Each folder name is unique.

 

------------------------------------------------------------------------------

My code, simulate a trie tree:

class Node:
    def __init__(self, val, terminal, lst):
        self.val = val
        self.terminal = terminal
        self.names = lst
        self.sons = {}


class Solution:
    def removeSubfolders(self, folder):
        res = []
        root = Node("", False, [])
        for path in folder:
            names = path.split('/')
            cur = root
            for name in names:
                if (name):
                    # bug1
                    # lst = cur.names
                    # lst.extend(name)
                    # bug2
                    if (name not in cur.sons): #bug3
                        cur.sons[name] = Node(name, False, cur.names+[name])
                    cur = cur.sons[name]
            cur.terminal = True
        layers = [{root}, set()]
        c, n = 0, 1
        while (layers[c]):
            for node in layers[c]:
                if (node.terminal == True):
                    res.append('/' + '/'.join(node.names))
                else:
                    for k,v in node.sons.items():
                        layers[n].add(v)
            layers[c].clear()
            c, n = n, c
        return res

s = Solution()
print(s.removeSubfolders(["/a/b/c","/a/b/ca","/a/b/d"]))

From leetcode discussion:

class Solution:
    def removeSubfolders(self, folder):
        res = set()
        folder.sort(key=lambda x:len(x))
        for path in folder:
            #bug1 path[i] == '/'
            if (not any(path[i] == '/' and path[:i] in res for i in range(2,len(path)))):
                res.add(path)
        return list(res)

s = Solution()
print(s.removeSubfolders(["/a/b/c","/a/b/ca","/a/b/d"]))

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值