[LeetCode] 588. Design In-Memory File System

发布时间:2019-06-25 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了[LeetCode] 588. Design In-Memory File System脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

Problem

Design an in-memory file system to simulate the following functions:

ls: Given a path in string format. If it is a file path, return a list that only contains this file's name. If it is a directory path, return the list of file and directory names in this directory. Your output (file and directory names together) should in lexicographic order.

mkdir: Given a directory path that does not exist, you should make a new directory according to the path. If the middle directories in the path don't exist either, you should create them as well. This function has void return type.

addContentToFile: Given a file path and file content in string format. If the file doesn't exist, you need to create that file containing given content. If the file already exists, you need to append given content to original content. This function has void return type.

readContentFromFile: Given a file path, return its content in string format.

Example:

Input:
["FileSystem","ls","mkdir","addContentToFile","ls","readContentFromFile"]
[[],["/"],["/a/b/c"],["/a/b/c/d","hello"],["/"],["/a/b/c/d"]]

Output:
[null,[],null,null,["a"],"hello"]

Explanation:
https://assets.leetcode.com/u...

[LeetCode] 588. Design In-Memory File System

Note:

You can assume all file or directory paths are absolute paths which begin with / and do not end with / except that the path is just "/".
You can assume that all operations will be passed valid parameters and users will not attempt to retrieve file content or list a directory or file that does not exist.
You can assume that all directory names and file names only contain lower-case letters, and same names won't exist in the same directory.

Solution

class FileSystem {
    
    class File {
        boolean isFile = false;
        Map<String, File> children = new HashMap<>();
        String content = "";
        public File() {}
    }
    
    File root = null;

    public FileSystem() {
        root = new File();
    }
    
    public void mkdir(String path) {
        String[] dirs = path.split("/");
        File node = root;
        for (String dir: dirs) {
            if (dir.length() == 0) continue;
            if (!node.children.containsKey(dir)) {
                node.children.put(dir, new File());
            }
            node = node.children.get(dir);
        }
    }
    
    public void addContentToFile(String filePath, String content) {
        String[] dirs = filePath.split("/");
        File node = root;
        for (String dir: dirs) {
            if (dir.length() == 0) continue;
            if (!node.children.containsKey(dir)) {
                node.children.put(dir, new File());
            }
            node = node.children.get(dir);
        }
        node.content += content;
        node.isFile = true;
    }
    
    public String readContentFromFile(String filePath) {
        String[] dirs = filePath.split("/");
        File node = root;
        for (String dir: dirs) {
            if (dir.length() == 0) continue;
            if (!node.children.containsKey(dir)) {
                node.children.put(dir, new File());
            }
            node = node.children.get(dir);
        }
        return node.content;
    }
    
    public List<String> ls(String path) {
        List<String> res = new ArrayList<>();

        String[] dirs = path.split("/");
        File node = root;
        String lastItem = "";
        for (String dir: dirs) {
            if (dir.length() == 0) continue;
            if (!node.children.containsKey(dir)) {
                node.children.put(dir, new File());
            }
            lastItem = dir;
            node = node.children.get(dir);
        }
        if (node.isFile) res.add(lastItem);
        else {
            for (String key: node.children.keySet()) {
                res.add(key);
            }
        }
        Collections.sort(res);
        return res;
    }
}

脚本宝典总结

以上是脚本宝典为你收集整理的[LeetCode] 588. Design In-Memory File System全部内容,希望文章能够帮你解决[LeetCode] 588. Design In-Memory File System所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: