Saturday, May 11, 2019

LeetCode [588] Design In-Memory File System

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:
filesystem

  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
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
class TrieNode
{
  public:
    string fileContent;
    unordered_map<string, TrieNode *> files;
    unordered_map<string, TrieNode *> dirs;
};

class FileSystem
{
    TrieNode *trie;
    vector<string> split(string s)
    {
        stringstream ss(s);
        string path;
        vector<string> paths;
        while (getline(ss, path, '/'))
        {
            if (!path.empty())
                paths.push_back(path);
        }
        return paths;
    }

  public:
    FileSystem()
    {
        trie = new TrieNode();
    }

    vector<string> ls(string path)
    {
        vector<string> ret;
        vector<string> paths = split(path);
        TrieNode *ptr = trie;
        for (auto p : paths)
        {
            //is a file
            if (ptr->files.count(p))
            {
                ret.push_back(p);
                return ret;
            }
            ptr = ptr->dirs[p];
        }
        for (auto f : ptr->files)
            ret.push_back(f.first);
        for (auto d : ptr->dirs)
            ret.push_back(d.first);
        sort(ret.begin(), ret.end());
        return ret;
    }

    void mkdir(string path)
    {
        vector<string> paths = split(path);
        TrieNode *ptr = trie;
        for (auto p : paths)
        {
            if (ptr->dirs.count(p) == 0)
            {
                ptr->dirs[p] = new TrieNode();
            }
            ptr = ptr->dirs[p];
        }
    }

    void addContentToFile(string filePath, string content)
    {
        vector<string> paths = split(filePath);
        int n = paths.size();
        TrieNode *ptr = trie;
        for (int i = 0; i < n - 1; ++i)
        {
            if (ptr->dirs.count(paths[i]) == 0)
            {
                ptr->dirs[paths[i]] = new TrieNode();
            }
            ptr = ptr->dirs[paths[i]];
        }

        string fileName = paths[n - 1];
        if (ptr->files.count(fileName) == 0)
        {
            ptr->files[fileName] = new TrieNode();
        }
        ptr = ptr->files[fileName];
        ptr->fileContent += content;
    }

    string readContentFromFile(string filePath)
    {
        vector<string> paths = split(filePath);
        int n = paths.size();
        TrieNode *ptr = trie;
        for (int i = 0; i < n - 1; ++i)
        {
            ptr = ptr->dirs[paths[i]];
        }
        string fileName = paths[n - 1];
        ptr = ptr->files[fileName];
        return ptr->fileContent;
    }
};

No comments:

Post a Comment