71. Simplify Path

原题链接

Given an absolute path for a file (Unix-style), simplify it. For example, path = "/home/", => "/home" path = "/a/./b/../../c/", => "/c"

先根据'/'的位置分割路径字符串,java可以直接用split函数,C++没有这个函数,需要遍历字符串判断当前字符是否为‘/’,并用substr提取两个‘/’之间的字符。分割子串后,考虑特殊情况:1.子串为“..”,意思为返回上级目录,这个操作让人很容易联想到栈,即把最近压入的目录“弹出”,栈顶就变成了上一级目录。2.子串为空或‘.’,意思是不变动目录,不作任何操作。综合考虑,我使用栈来当作存储路径的暂时容器,每读出一个不是特殊情况的字符串,就把它压入栈,每遇到".."就弹出一个栈顶元素,最后把栈中的元素重新拼接起来。

class Solution {
public:
    string simplifyPath(string path) {
        deque<string> st;
        string tmp;
        if(path.back()!='/') path.push_back('/');
        int start=0;
        for(int i=0; i<path.length(); i++) {
            if(path[i]=='/') {
                tmp=path.substr(start, i-start);
                if(tmp=="..") {
                   if(!st.empty()) st.pop_back();
                }
                else if(tmp!="." && tmp!="") st.push_back(tmp);
                start = i+1;
            }
        }

        if(st.empty()) return "/";
        string result = "";
        while(!st.empty()) {
            result = result+"/"+st.front();
            st.pop_front();
        }
        return result;
    }
};

代码实现中有几个细节,首先如果原路径不以‘/’结尾,则在末尾加上‘/’,这是因为循环中只有碰到‘/’才有机会把分割的子串压入栈中,如果最后不以‘/’结尾,就可能直接遍历完字符串而没有把最后一个分割子串压入栈。其次,实际的栈不是用stack,而是用deque实现,这是因为stack只能先入后出,在最后拼接路径时不能按正序输出子串。使用vector去实现栈也是可以的,但我测试了一下好像deque跑的速度快些。附:deque与vector的区别

转载于:https://my.oschina.net/cofama/blog/912078

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
优化代码 def fault_classification_wrapper(vin, main_path, data_path, log_path, done_path): start_time = time.time() isc_path = os.path.join(done_path, vin, 'isc_cal_result', f'{vin}_report.xlsx') if not os.path.exists(isc_path): print('No isc detection input!') else: isc_input = isc_produce_alarm(isc_path, vin) ica_path = os.path.join(done_path, vin, 'ica_cal_result', f'ica_detection_alarm_{vin}.csv') if not os.path.exists(ica_path): print('No ica detection input!') else: ica_input = ica_produce_alarm(ica_path) soh_path = os.path.join(done_path, vin, 'SOH_cal_result', f'{vin}_sohAno.csv') if not os.path.exists(soh_path): print('No soh detection input!') else: soh_input = soh_produce_alarm(soh_path, vin) alarm_df = pd.concat([isc_input, ica_input, soh_input]) alarm_df.reset_index(drop=True, inplace=True) alarm_df['alarm_cell'] = alarm_df['alarm_cell'].apply(lambda _: str(_)) print(vin) module = AutoAnalysisMain(alarm_df, main_path, data_path, done_path) module.analysis_process() flags = os.O_WRONLY | os.O_CREAT modes = stat.S_IWUSR | stat.S_IRUSR with os.fdopen(os.open(os.path.join(log_path, 'log.txt'), flags, modes), 'w') as txt_file: for k, v in module.output.items(): txt_file.write(k + ':' + str(v)) txt_file.write('\n') for x, y in module.output_sub.items(): txt_file.write(x + ':' + str(y)) txt_file.write('\n\n') fc_result_path = os.path.join(done_path, vin, 'fc_result') if not os.path.exists(fc_result_path): os.makedirs(fc_result_path) pd.DataFrame(module.output).to_csv( os.path.join(fc_result_path, 'main_structure.csv')) df2 = pd.DataFrame() for subs in module.output_sub.keys(): sub_s = pd.Series(module.output_sub[subs]) df2 = df2.append(sub_s, ignore_index=True) df2.to_csv(os.path.join(fc_result_path, 'sub_structure.csv')) end_time = time.time() print("time cost of fault classification:", float(end_time - start_time) * 1000.0, "ms") return
05-28

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值