亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++算法庫中的凸包算法實現

發布時間:2024-08-13 12:53:29 來源:億速云 閱讀:133 作者:小樊 欄目:編程語言

C++算法庫中常用的凸包算法實現是Graham Scan算法。以下是一個簡單的實現示例:

#include <iostream>
#include <vector>
#include <algorithm>

struct Point {
    int x, y;
};

// 用于比較兩個點的極角
bool compare(Point a, Point b) {
    return a.x < b.x || (a.x == b.x && a.y < b.y);
}

// 計算兩點之間的叉積
int crossProduct(Point a, Point b, Point c) {
    return (b.x - a.x) * (c.y - a.y) - (b.y - a.y) * (c.x - a.x);
}

// Graham Scan算法
std::vector<Point> convexHull(std::vector<Point>& points) {
    int n = points.size();
    if (n < 3) {
        return points;
    }

    std::sort(points.begin(), points.end(), compare);

    std::vector<Point> hull;
    // 下凸殼
    for (int i = 0; i < n; i++) {
        while (hull.size() >= 2 && crossProduct(hull[hull.size() - 2], hull.back(), points[i]) <= 0) {
            hull.pop_back();
        }
        hull.push_back(points[i]);
    }
    // 上凸殼
    int t = hull.size() + 1;
    for (int i = n - 2; i >= 0; i--) {
        while (hull.size() >= t && crossProduct(hull[hull.size() - 2], hull.back(), points[i]) <= 0) {
            hull.pop_back();
        }
        hull.push_back(points[i]);
    }

    hull.pop_back(); // 移除重復的起始點
    return hull;
}

int main() {
    std::vector<Point> points = {{0, 3}, {1, 1}, {2, 2}, {4, 4}, {0, 0}, {1, 2}, {3, 1}, {3, 3}};
    std::vector<Point> hull = convexHull(points);

    std::cout << "Convex Hull Points:\n";
    for (Point p : hull) {
        std::cout << "(" << p.x << ", " << p.y << ")\n";
    }

    return 0;
}

在這個示例中,我們首先定義了一個Point結構體用于表示二維點的坐標。然后實現了比較兩個點的極角的比較函數compare和計算兩點之間的叉積的函數crossProduct。最后實現了Graham Scan算法函數convexHull來計算凸包。

main函數中,我們定義了一些二維點,并調用convexHull函數來計算凸包,并輸出凸包的點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

顺昌县| 会理县| 台前县| 平顺县| 美姑县| 日喀则市| 乐都县| 宜城市| 内乡县| 巫山县| 奉节县| 叙永县| 岐山县| 宜城市| 勐海县| 延长县| 那曲县| 突泉县| 凯里市| 铜梁县| 北宁市| 科尔| 兰西县| 遵化市| 大理市| 安平县| 白银市| 瑞丽市| 甘泉县| 岳普湖县| 浦城县| 河池市| 平安县| 西宁市| 扎鲁特旗| 金乡县| 府谷县| 石嘴山市| 伊川县| 邵武市| 姜堰市|