Skip to content

Latest commit

 

History

History

1166

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

You are asked to design a file system that allows you to create new paths and associate them with different values.

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.

Implement the FileSystem class:

  • bool createPath(string path, int value) Creates a new path and associates a value to it if possible and returns true. Returns false if the path already exists or its parent path doesn't exist.
  • int get(string path) Returns the value associated with path or returns -1 if the path doesn't exist.

 

Example 1:

Input: 
["FileSystem","createPath","get"]
[[],["/a",1],["/a"]]
Output: 
[null,true,1]
Explanation: 
FileSystem fileSystem = new FileSystem();

fileSystem.createPath("/a", 1); // return true
fileSystem.get("/a"); // return 1

Example 2:

Input: 
["FileSystem","createPath","createPath","get","createPath","get"]
[[],["/leet",1],["/leet/code",2],["/leet/code"],["/c/d",1],["/c"]]
Output: 
[null,true,true,2,false,-1]
Explanation: 
FileSystem fileSystem = new FileSystem();

fileSystem.createPath("/leet", 1); // return true
fileSystem.createPath("/leet/code", 2); // return true
fileSystem.get("/leet/code"); // return 2
fileSystem.createPath("/c/d", 1); // return false because the parent path "/c" doesn't exist.
fileSystem.get("/c"); // return -1 because this path doesn't exist.

 

Constraints:

  • The number of calls to the two functions is less than or equal to 104 in total.
  • 2 <= path.length <= 100
  • 1 <= value <= 109

Companies:
Amazon, Airbnb, Google

Related Topics:
Hash Table, String, Design, Trie

Solution 1.

// OJ: https://leetcode.com/problems/design-file-system/
// Author: github.com/lzl124631x
// Time:
//      FileSystem: O(1)
//      createPath, get: O(P)
// Space: O(N)
class FileSystem {
    unordered_map<string, int> m;
public:
    FileSystem() {}
    bool createPath(string path, int value) {
        if (m.count(path)) return false;
        auto i = path.find_last_of("/");
        auto parent = path.substr(0, i);
        if (parent.size() && m.count(parent) == 0) return false;
        m[path] = value;
        return true;
    }
    int get(string path) {
        return m.count(path) ? m[path] : -1;
    }
};