-
-
Notifications
You must be signed in to change notification settings - Fork 51k
Add suffix automaton #15083
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Clear20-22
wants to merge
2
commits into
TheAlgorithms:master
Choose a base branch
from
Clear20-22:add-suffix-automaton
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+175
−0
Open
Add suffix automaton #15083
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,175 @@ | ||
| """ | ||
| Suffix Automaton (SAM) for String Processing. | ||
|
|
||
| Reference: https://en.wikipedia.org/wiki/Suffix_automaton | ||
| Reference: https://cp-algorithms.com/string/suffix-automaton.html | ||
|
|
||
| A Suffix Automaton is the minimal Deterministic Finite Automaton (DFA) that recognizes | ||
| all suffixes (and substrings) of a given string in O(N) time and O(N) space. | ||
| """ | ||
|
|
||
|
|
||
| class State: | ||
| """ | ||
| State (node) in a Suffix Automaton. | ||
| """ | ||
|
|
||
| def __init__(self, length: int = 0, link: int = -1) -> None: | ||
| self.length: int = length | ||
| self.link: int = link | ||
| self.next: dict[str, int] = {} | ||
|
|
||
|
|
||
| class SuffixAutomaton: | ||
| """ | ||
| Suffix Automaton data structure. | ||
|
|
||
| >>> sam = SuffixAutomaton("abacaba") | ||
| >>> sam.contains("abac") | ||
| True | ||
| >>> sam.contains("caba") | ||
| True | ||
| >>> sam.contains("xyz") | ||
| False | ||
| >>> sam.count_distinct_substrings() | ||
| 21 | ||
| >>> sam.count_occurrences("aba") | ||
| 2 | ||
| >>> sam.count_occurrences("a") | ||
| 4 | ||
| >>> SuffixAutomaton("") | ||
| Traceback (most recent call last): | ||
| ... | ||
| ValueError: Input string must not be empty. | ||
| """ | ||
|
|
||
| def __init__(self, string: str) -> None: | ||
| if not string: | ||
| raise ValueError("Input string must not be empty.") | ||
|
|
||
| self.states: list[State] = [State(length=0, link=-1)] | ||
| self.last: int = 0 | ||
| self.string: str = string | ||
|
|
||
| for char in string: | ||
| self.extend(char) | ||
|
|
||
| def extend(self, char: str) -> None: | ||
| """ | ||
| Extend the Suffix Automaton by appending character char. | ||
| Time Complexity: O(1) amortized | ||
| """ | ||
| curr = len(self.states) | ||
| self.states.append(State(length=self.states[self.last].length + 1)) | ||
|
|
||
| prev_state = self.last | ||
| while prev_state != -1 and char not in self.states[prev_state].next: | ||
| self.states[prev_state].next[char] = curr | ||
| prev_state = self.states[prev_state].link | ||
|
|
||
| if prev_state == -1: | ||
| self.states[curr].link = 0 | ||
| else: | ||
| next_state = self.states[prev_state].next[char] | ||
| if self.states[prev_state].length + 1 == self.states[next_state].length: | ||
| self.states[curr].link = next_state | ||
| else: | ||
| clone = len(self.states) | ||
| self.states.append( | ||
| State( | ||
| length=self.states[prev_state].length + 1, | ||
| link=self.states[next_state].link, | ||
| ) | ||
| ) | ||
| self.states[clone].next = dict(self.states[next_state].next) | ||
|
|
||
| while ( | ||
| prev_state != -1 | ||
| and self.states[prev_state].next.get(char) == next_state | ||
| ): | ||
| self.states[prev_state].next[char] = clone | ||
| prev_state = self.states[prev_state].link | ||
|
|
||
| self.states[next_state].link = clone | ||
| self.states[curr].link = clone | ||
|
|
||
| self.last = curr | ||
|
|
||
| def contains(self, pattern: str) -> bool: | ||
| """ | ||
| Check if pattern exists as a substring in O(|pattern|) time. | ||
|
|
||
| >>> sam = SuffixAutomaton("banana") | ||
| >>> sam.contains("nan") | ||
| True | ||
| >>> sam.contains("apple") | ||
| False | ||
| """ | ||
| curr = 0 | ||
| for char in pattern: | ||
| if char not in self.states[curr].next: | ||
| return False | ||
| curr = self.states[curr].next[char] | ||
| return True | ||
|
|
||
| def count_distinct_substrings(self) -> int: | ||
| """ | ||
| Compute total number of distinct substrings in O(N) time. | ||
|
|
||
| >>> sam = SuffixAutomaton("abc") | ||
| >>> sam.count_distinct_substrings() | ||
| 6 | ||
| >>> SuffixAutomaton("aaaa").count_distinct_substrings() | ||
| 4 | ||
| """ | ||
| total = 0 | ||
| for state in self.states[1:]: | ||
| total += state.length - self.states[state.link].length | ||
| return total | ||
|
|
||
| def count_occurrences(self, pattern: str) -> int: | ||
| """ | ||
| Count occurrences of pattern as a substring in the text in O(|pattern|) time. | ||
|
|
||
|
Comment on lines
+131
to
+133
|
||
| >>> sam = SuffixAutomaton("banana") | ||
| >>> sam.count_occurrences("an") | ||
| 2 | ||
| >>> sam.count_occurrences("na") | ||
| 2 | ||
| >>> sam.count_occurrences("banana") | ||
| 1 | ||
| >>> sam.count_occurrences("xyz") | ||
| 0 | ||
| """ | ||
| curr = 0 | ||
| for char in pattern: | ||
| if char not in self.states[curr].next: | ||
| return 0 | ||
| curr = self.states[curr].next[char] | ||
|
|
||
| # Standard endpos size calculation via suffix link tree | ||
| occurrences = [0] * len(self.states) | ||
| order = sorted( | ||
| range(len(self.states)), | ||
| key=lambda state_index: self.states[state_index].length, | ||
| reverse=True, | ||
| ) | ||
|
|
||
| # Mark initial end positions of prefix states | ||
| temp_last = 0 | ||
| for char in self.string: | ||
| temp_last = self.states[temp_last].next[char] | ||
| occurrences[temp_last] = 1 | ||
|
|
||
| # Push endpos sizes up the suffix link tree | ||
| for state_index in order: | ||
| if self.states[state_index].link != -1: | ||
| occurrences[self.states[state_index].link] += occurrences[state_index] | ||
|
|
||
| return occurrences[curr] | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| import doctest | ||
|
|
||
| doctest.testmod() | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this be a
dataclass?