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

溫馨提示×

如何測試c++中is_sorted函數的正確性

c++
小樊
84
2024-09-15 18:17:26
欄目: 編程語言

要測試 C++ 中 std::is_sorted 函數的正確性,你可以創建一些測試用例,包括已排序和未排序的數組

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

bool test_is_sorted() {
    // 測試用例1:已排序的數組
    std::vector<int> sorted_array = {1, 2, 3, 4, 5};
    if (!std::is_sorted(sorted_array.begin(), sorted_array.end())) {
        std::cerr << "Test case 1 failed: sorted array" << std::endl;
        return false;
    }

    // 測試用例2:未排序的數組
    std::vector<int> unsorted_array = {1, 3, 2, 4, 5};
    if (std::is_sorted(unsorted_array.begin(), unsorted_array.end())) {
        std::cerr << "Test case 2 failed: unsorted array" << std::endl;
        return false;
    }

    // 測試用例3:空數組
    std::vector<int> empty_array = {};
    if (!std::is_sorted(empty_array.begin(), empty_array.end())) {
        std::cerr << "Test case 3 failed: empty array" << std::endl;
        return false;
    }

    // 測試用例4:單元素數組
    std::vector<int> single_element_array = {42};
    if (!std::is_sorted(single_element_array.begin(), single_element_array.end())) {
        std::cerr << "Test case 4 failed: single element array" << std::endl;
        return false;
    }

    // 測試用例5:逆序數組
    std::vector<int> reversed_array = {5, 4, 3, 2, 1};
    if (std::is_sorted(reversed_array.begin(), reversed_array.end())) {
        std::cerr << "Test case 5 failed: reversed array" << std::endl;
        return false;
    }

    // 所有測試用例通過
    std::cout << "All test cases passed." << std::endl;
    return true;
}

int main() {
    test_is_sorted();
    return 0;
}

這個示例代碼首先定義了一個名為 test_is_sorted 的函數,該函數包含了五個測試用例。每個測試用例都使用 std::is_sorted 函數來檢查給定范圍內的元素是否已按非降序排序。如果測試用例失敗,將輸出錯誤消息并返回 false。如果所有測試用例都通過,將輸出 “All test cases passed.” 并返回 true

main 函數中,我們調用 test_is_sorted 函數來運行測試。如果你想要添加更多的測試用例,只需在 test_is_sorted 函數中添加新的測試用例即可。

0
仪陇县| 闸北区| 通城县| 松潘县| 长垣县| 荣昌县| 泰州市| 凭祥市| 龙口市| 凤凰县| 泸州市| 华容县| 白城市| 定襄县| 大方县| 宁远县| 原平市| 汽车| 泉州市| 隆化县| 潜江市| 麦盖提县| 汉寿县| 吉隆县| 新昌县| 梁河县| 河津市| 铜山县| 烟台市| 聊城市| 民权县| 铜梁县| 荣昌县| 湖北省| 宿州市| 偏关县| 九龙城区| 平南县| 柘荣县| 西宁市| 巩留县|