gpt4 book ai didi

c++ - 为什么 boost 正则表达式用完了堆栈空间?

转载 作者:可可西里 更新时间:2023-11-01 18:19:19 24 4
gpt4 key购买 nike

#include <boost/regex.hpp>
#include <string>
#include <iostream>

using namespace boost;
static const regex regexp(
"std::vector<"
"(std::map<"
"(std::pair<((\\w+)(::)?)+, (\\w+)>,?)+"
">,?)+"
">");

std::string errorMsg =
"std::vector<"
"std::map<"
"std::pair<Test::Test, int>,"
"std::pair<Test::Test, int>,"
"std::pair<Test::Test, int>"
">,"
"std::map<"
"std::pair<Test::Test, int>,"
"std::pair<Test::Test, int>,"
"std::pair<Test::Test, int>"
">"
">";
int main()
{
smatch result;
if(regex_match(errorMsg, result, regexp))
{
for (unsigned i = 0; i < result.size(); ++i)
{
std::cout << result[i] << std::endl;
}
}

// std::cout << errorMsg << std::endl;

return 0;
}

这会产生:

terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<std::runtime_error>
>' what(): Ran out of stack space trying to match the regular expression.

编译为

g++ regex.cc -lboost_regex

编辑

我的平台:

g++ (Ubuntu/Linaro 4.4.4-14ubuntu5) 4.4.5
libboost-regex1.42
Intel(R) Core(TM)2 Quad CPU Q9400 @ 2.66GHz
So the latest Ubuntu 64 bit

最佳答案

((\\w+)(::)?)+ 是所谓的“病态”正则表达式之一——它会花费指数时间,因为你有两个表达式一个接一个地互相依赖。也就是说,由于 catastrophic backtracking 而失败.

考虑我们是否遵循链接的示例,并将“更复杂的东西”减少为“x”。让我们用 \\w 来做到这一点:

  • ((x+)(::)?)+

我们还假设我们的输入永远不会有 ::。有了这个实际上会使正则表达式更加复杂,所以如果我们抛开复杂性,那么我们真的应该让事情变得更简单,如果没有别的:

  • (x+)+

现在您已经遇到了教科书式的嵌套量词问题,如上面链接中详述的那样。

有几种方法可以解决这个问题,但最简单的方法可能是使用 atomic group modifier 禁止在内部匹配中回溯。 "(?>":

  • ((?>\\w+)(::)?)+

关于c++ - 为什么 boost 正则表达式用完了堆栈空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4495733/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com