A small C++ practice project implementing the suffix tree data structure
Very rudimentary at this point - still missing a lot of features:
- Migration of usage of std::string/std::string_view to any type satisfying the std::ranges::range/std::ranges::view concepts or something similar
- Way more tests, e.g. tests of the (well-defined) structure of a suffix tree
- Maybe make the construction consteval just for fun
- Define concepts that show requirements for e.g. the string type to be used for the suffix tree
- ...