每当我尝试编译时,我的调试器都会出现该错误(在 ')' 标记之前的预期主表达式)。这是有错误的代码。
#define threshold 40 //threshold intensity
using namespace std;
using namespace cimg_library;
void RegionGrow (CLinkedList<struct structure> &ListName, CByteImage &Img, uint32_t uRow, uint32_t uCol)
{
if (Img.Element (uRow+1, uCol) > threshold)
{
ListName.AddToTail(structure);
Img.Element (uRow+1, uCol) = 0;
RegionGrow (ListName, Img, uRow+1, uCol);
}
}
有人知道C链表吗?或错误处理?请帮忙。谢谢。