vs的c语言程序出错,c – 如何修复vs2013上的C3848错误?
我正在尝试在VS2013上使用C实现最佳优先搜索.下面是代码.//node for treestruct Node{Node(std::string const& s, std::string const& p): state(s), path(p){}const std::string state;const std::string path;};//heuristic func...