algorithm icon indicating copy to clipboard operation
algorithm copied to clipboard

Boost.org algorithm module

Results 30 algorithm issues
Sort by recently updated
recently updated
newest added

There are dual-sequence overloads for `transform()` (this overload is called `zip` in may other languages) and `transform_reduce()`, in the standard, but there is no similar version for `transform_inclusive_scan()` or `transform_exclusive_scan()`....

Would there be any interest in introducing a `.clang-format` file for this library? It would not set precedent for boost - `gil`, `graph`, `histogram`, `multiprecision`, `nowide`, `outcome`, and `yap` all...

[The doc](https://www.boost.org/doc/libs/1_77_0/doc/html/boost/algorithm/find_all_regex.html) says that the container we should pass to this function can be std::vector. But when I run the program it gives a compile error. But when the result...

Hi, I believe most if not all of the algorithms in `boost` are `constexpr` if the compiler supports it and C++14 or greater is used. (yes?) That's not indicated in...

## Introduction In 1997, [David R. Musser](http://www.cs.rpi.edu/~musser/) and [Gor V. Nishanov](https://www.linkedin.com/in/gor-nishanov-71aa2113) wrote a hitherto unpublished paper and accompanying code, _[A Fast Generic Sequence Matching Algorithm](http://www.cs.rpi.edu/~musser/gp/gensearch1.pdf)_. It struck me as odd...

I want to split a UTF-8 string into tokens. However it looks like that **split_regex()** failed and just return original string. I also tried `u32regex_replace()` and it indeed replaced successfully....

I wrote implementation Aho-Corasick's algorithm. C++11 required for it (I used std::unique_ptr, variadic templates, default template parameters).

I happened to typo a regex, and I noticed that `boost::algorithm::split_regex` started consuming a bunch of CPU. I don't know is this would have eventually caught itself and terminating. The...