Leetcode Simplify Path

來源:互聯網
上載者:User

標籤:style   blog   color   strong   art   for   

Given an absolute path for a file (Unix-style), simplify it.

For example,
path = "/home/", => "/home"
path = "/a/./b/../../c/", => "/c"

Corner Cases:

 

  • Did you consider the case where path = "/../"?
    In this case, you should return "/".
  • Another corner case is the path might contain multiple slashes ‘/‘ together, such as "/home//foo/".
    In this case, you should ignore redundant slashes and return "/home/foo".

題目不難,主要考慮一些特殊情況。

對於path = "/a/./b/../../c/", => "/c",類比一下

先按照‘/‘對字串進行分割,得到 [a, . , b, .. , .. , c]

首先進入目錄a,注意 ‘.‘ 代表目前的目錄 ,".."代表上一個目錄

然後到達‘.‘,還是在目前的目錄,/a

然後到達‘b‘,這為/a/b

然後到達‘..‘,這是回到父目錄,則變為/a

然後到達‘..‘,繼續回到父目錄,則變為/

然後到達‘c‘,則達到子目錄,變為/c

class Solution {public:    vector<string> split(string& path, char ch){        int index = 0;        vector<string> res;        while(index < path.length()){            while(index < path.length() && path[index] == ‘/‘) index++;            if(index >= path.length()) break;            int start=index, len = 0;            while(index < path.length() && path[index]!=‘/‘) {index++;len++;}            res.push_back(path.substr(start,len));        }        return res;    }        string simplifyPath(string path) {        vector<string> a = split(path,‘/‘);        vector<string> file;        for(int i = 0 ; i < a.size(); ++ i){            if(a[i] == ".." ){                if(!file.empty()) file.pop_back();            }            else if(a[i]!=".") file.push_back(a[i]);        }        string res="";        if(file.empty()) res ="/";        else{            for(int i = 0 ; i < file.size(); ++ i) res+="/"+file[i];        }        return res;    }};

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.