鱼C论坛

 找回密码
 立即注册
查看: 1312|回复: 0

[技术交流] LeetCode 1233. 删除子文件夹

[复制链接]
发表于 2020-3-5 14:47:50 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 798236606 于 2020-3-5 14:49 编辑

传送门:https://leetcode-cn.com/problems ... rom-the-filesystem/
class Solution {
public:
    vector<string> removeSubfolders(vector<string>& folder) {
        sort(folder.begin(), folder.end());//按字典序排列,使同一目录下文件夹聚集,效果如["/a","/a/b", "/a/b/c", "/a/b/d", "/a/e"]
        vector<string> ans;
        string father = "#";//父文件夹名称,开始时没有父文件夹,选一个题目不会出现的字符串

        for (string s: folder) 
        {
            if (s.find(father) == s.npos)//如果路径中找不到父文件夹,说明s不是子文件夹
            {
                ans.push_back(s);
                father = s + "/";//加"/"才能表示包含关系,如"/a"不是"/a/"的子文件夹
            }
        }

        return ans;
    }
};
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 23:56

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表