2

我正在尝试实现一种算法,该算法给定一个矩形和多个由用户决定的多边形,可以识别它们是在矩形内部、外部还是与矩形相交,并提供所述多边形的数量。

我编写了一个算法并且它可以工作,但我注意到在编译之后至少需要 20 秒才能启动(如果我第二次、第三次或任何其他时间启动它就不会发生这种情况)。

试图弄清楚是什么让我的代码如此缓慢,我注意到如果我删除对确定多边形相对于矩形位置的函数的调用,程序会立即运行。

我试图找出错误但什么也没找到

这里是

// struct used in the function
struct Polygon
{
    int ** points;
    int vertices;
};
// inside, outside and over are the number of polygons that are inside, outside or intersect the rectangle,
// they're initialized to 0 in the main.
// down_side, up_side are the y_coordinate of the two horizontals sides.
// left_side, right_side are the x_coordinate of the two vertical sides.
void checkPolygons( Polygon * polygon, int & inside, int & outside, int & over, unsigned int polygons, const unsigned int down_side, const unsigned int up_side, const unsigned int left_side, const unsigned int right_side )
{
    for ( unsigned int pol = 0; pol < polygons; ++pol )
    {
        unsigned int insideVertices = 0;
        unsigned int vertices = polygon[ pol ].vertices;

        for ( unsigned int point = 0; point < vertices; ++point )
        {
            unsigned int x_coordinate = polygon[ pol ].points[ point ][ 0 ];
            unsigned int y_coordinate = polygon[ pol ].points[ point ][ 1 ];

            if ( ( x_coordinate <= right_side ) and ( x_coordinate >= left_side ) and ( y_coordinate <= up_side ) and ( y_coordinate >= down_side ) )
            {
                insideVertices++;
            }

        }

        if ( insideVertices == 0 )
            ++outside;
        else if ( insideVertices == vertices ) 
            ++inside;
        else
            ++over;
    }
}
4

1 回答 1

2

检查您的防病毒活动和配置。它可能正在扫描新编译的可执行文件以查找病毒。如果是这种情况,您可能希望从病毒扫描中排除您正在编译的目录。

于 2013-03-02T21:42:35.180 回答