aboutsummaryrefslogtreecommitdiff
path: root/store/works/solutions/leetcode/cpp/1286.cpp
blob: 1ad0d4ed79f68f69f7f7cafcf57ff1f14205af90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <string>

using std::string;

#include <vector>

class CombinationIterator {
public:
  string chars;
  int char_length;
  int combinationLength;
  bool has_next = true;
  std::vector<int> indices;

  CombinationIterator(string characters, int combinationLength)
      : chars(characters), char_length(characters.size()),
        combinationLength(combinationLength) {
    for (int i = 0; i < combinationLength; i++) {
      indices.push_back(i);
    }
  }

  string next() {
    string result;
    for (auto index : indices) {
      result.push_back(chars[index]);
    }

    int count = 1;
    while (indices[combinationLength - count] == char_length - count) {
      count++;
      if (count > combinationLength) {
        has_next = false;
        return result;
      }
    }

    indices[combinationLength - count] += 1;
    for (int i = combinationLength - count + 1; i < combinationLength; i++) {
      indices[i] = indices[i - 1] + 1;
    }

    return result;
  }

  bool hasNext() {
    return has_next;
  }
};

/**
 * Your CombinationIterator object will be instantiated and called as such:
 * CombinationIterator* obj = new CombinationIterator(characters,
 * combinationLength); string param_1 = obj->next(); bool param_2 =
 * obj->hasNext();
 */