suffixarray 0.0.2 copy "suffixarray: ^0.0.2" to clipboard
suffixarray: ^0.0.2 copied to clipboard

Dart 1 only

Implementation of suffix array data structure for string searching

#Suffix Array for Dart

Suffix Array is a data-structure which can be used for indexing and searching texts.

##Time and Space Complexity The time complexity for different operations in the current implementation are:

  • Create: O(N * log^2 N), where N is length of input string
  • Locate: O(P * log N + Occ), where P is length of pattern to be searched, and Occ is size of result
  • Count: O(P * log N)

The space complexity of the data structure is O(N).

##Example Usage The following code creates a suffix array for the string "abcabc" and then searches for substrings in that:

import 'package:suffixarray/suffixarray.dart';

...
SuffixArray suffixArray = new SuffixArray("abcabc");
print(suffixArray.lookup("abc")); // prints [0, 3]
print(suffixArray.count("abc")); // prints 2
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Implementation of suffix array data structure for string searching

Repository
View/report issues

License

unknown (LICENSE)

More

Packages that depend on suffixarray