Leetcode 763. Partition Labels

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

《Leetcode 763. Partition Labels》 Partition Labels

2. Solution

  • Version 1
class Solution {
public:
    vector<int> partitionLabels(string S) {
        unordered_map<char, int> m;
        vector<int> result;
        vector<int> indices(S.length());
        for(int i = 0; i < S.length(); i++) {
            m[S[i]] = i;
        }
        for(int i = 0; i < S.length(); i++) {
            indices[i] = m[S[i]];
        }
        int max = 0;
        int start = 0;
        for(int i = 0; i < S.length(); i++) {
            if(indices[i] > max) {
                max = indices[i];
            }
            if(i == max) {
                result.push_back(max - start + 1);
                start = i + 1;
                max = 0;
            }
        }
        return result;
    }
};
  • Version 2
class Solution {
public:
    vector<int> partitionLabels(string S) {
        unordered_map<char, int> m;
        vector<int> result;
        for(int i = 0; i < S.length(); i++) {
            m[S[i]] = i;
        }
        int max = 0;
        int start = 0;
        for(int i = 0; i < S.length(); i++) {
            if(m[S[i]] > max) {
                max = m[S[i]];
            }
            if(i == max) {
                result.push_back(max - start + 1);
                start = i + 1;
                max = 0;
            }
        }
        return result;
    }
};

Reference

  1. https://leetcode.com/problems/partition-labels/description/
    原文作者:SnailTyan
    原文地址: https://www.jianshu.com/p/5fbae4b7f80d
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞