-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfa_helpers.hpp
102 lines (84 loc) · 2.25 KB
/
dfa_helpers.hpp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#pragma once
#include "base/string_utils.hpp"
#include <cstddef>
#include <string>
namespace strings
{
template <typename DFA>
class PrefixDFAModifier
{
public:
class Iterator
{
public:
Iterator & Move(strings::UniChar c)
{
if (Rejects())
return *this;
if (Accepts())
{
auto currentIt = m_it;
currentIt.Move(c);
// While moving m_it, errors number decreases while matching unmatched symbols:
// source: a b c d e f
// query: a b c d e f
// errors: 5 4 3 2 1 0
//
// After a misprinted symbol errors number remains the same:
// source: a b c d e f
// query: a b z d e f
// errors: 5 4 3 3 2 1
//
// source: a b c d e f
// query: a b d c e f
// errors: 5 4 3 3 2 1
//
// source: a b c d e f
// query: a b d e f
// errors: 5 4 3 3 2
//
// source: a b c d e f
// query: a b c z d e f
// errors: 5 4 3 3 3 2 1
//
// Errors number cannot decrease after it has increased once.
if (currentIt.ErrorsMade() > ErrorsMade())
return *this;
}
m_it.Move(c);
if (m_it.Accepts())
m_accepts = true;
return *this;
}
bool Accepts() const { return m_accepts; }
bool Rejects() const { return !Accepts() && m_it.Rejects(); }
size_t ErrorsMade() const { return m_it.ErrorsMade(); }
size_t PrefixErrorsMade() const { return m_it.PrefixErrorsMade(); }
private:
friend class PrefixDFAModifier;
Iterator(typename DFA::Iterator it) : m_it(it), m_accepts(m_it.Accepts()) {}
typename DFA::Iterator m_it;
bool m_accepts;
};
explicit PrefixDFAModifier(DFA const & dfa) : m_dfa(dfa) {}
Iterator Begin() const { return Iterator(m_dfa.Begin()); }
private:
DFA const m_dfa;
};
template <typename DFAIt, typename It>
void DFAMove(DFAIt & it, It begin, It end)
{
for (; begin != end; ++begin)
it.Move(*begin);
}
template <typename DFAIt>
void DFAMove(DFAIt & it, UniString const & s)
{
DFAMove(it, s.begin(), s.end());
}
template <typename DFAIt>
void DFAMove(DFAIt & it, std::string const & s)
{
DFAMove(it, MakeUniString(s));
}
} // namespace strings