117.info
人生若只如初见

C++ set函数在算法设计中的应用技巧

在C++中,set是一个关联容器,它包含一组唯一的元素,并按照特定的排序规则进行存储。set在算法设计中的应用主要体现在以下几个方面:

  1. 去重:由于set中的元素都是唯一的,因此可以使用set来实现去重操作。将一个容器中的元素插入到set中,然后再从set中取出元素,这样就可以得到一个去重后的序列。
#include
#include
#include 
using namespace std;

int main() {
    vector nums = {1, 2, 3, 4, 4, 5, 6, 6, 7};
    set s(nums.begin(), nums.end());
    for (int num : s) {
        cout<< num << " ";
    }
    return 0;
}
  1. 查找:set提供了高效的查找操作,可以在O(log n)的时间复杂度内完成查找。如果需要在一个有序的序列中查找某个元素,可以使用set来实现。
#include
#include 
using namespace std;

int main() {
    set s = {1, 2, 3, 4, 5, 6, 7};
    int target = 4;
    if (s.find(target) != s.end()) {
        cout << "Found "<< target<< endl;
    } else {
        cout << "Not found"<< endl;
    }
    return 0;
}
  1. 区间查询:set还支持区间查询,可以在O(log n)的时间复杂度内找到某个区间内的所有元素。例如,可以使用lower_boundupper_bound函数来查找一个区间内的所有元素。
#include
#include 
using namespace std;

int main() {
    set s = {1, 2, 3, 4, 5, 6, 7};
    int lower = 3, upper = 6;
    auto it_low = s.lower_bound(lower);
    auto it_up = s.upper_bound(upper);
    for (auto it = it_low; it != it_up; ++it) {
        cout << *it << " ";
    }
    return 0;
}
  1. 最大/最小值:set中的第一个元素是最小值,最后一个元素是最大值。可以通过*s.begin()*s.rbegin()来获取最小值和最大值。
#include
#include 
using namespace std;

int main() {
    set s = {1, 2, 3, 4, 5, 6, 7};
    cout << "Min: " << *s.begin()<< endl;
    cout << "Max: " << *s.rbegin()<< endl;
    return 0;
}
  1. 排序:set会自动对其中的元素进行排序。如果需要对一个序列进行排序,可以将其插入到set中,然后再从set中取出元素,这样就可以得到一个有序的序列。
#include
#include
#include 
using namespace std;

int main() {
    vector nums = {7, 3, 1, 6, 4, 2, 5};
    set s(nums.begin(), nums.end());
    for (int num : s) {
        cout<< num << " ";
    }
    return 0;
}

总之,set在算法设计中的应用非常广泛,可以帮助我们实现去重、查找、区间查询、最大/最小值查询和排序等功能。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe63dAzsOAQJSBw.html

推荐文章

  • c#数组切片的语法是什么

    在C#中,数组没有内置的切片功能,但你可以使用LINQ(Language Integrated Query)的Skip()和Take()方法来实现数组切片
    using System;
    using System.L...

  • c#中如何进行数组切片

    在C#中,没有像Python那样直接的数组切片语法。但是,你可以使用LINQ(Language Integrated Query)的Skip()和Take()方法来实现数组切片的功能。下面是一个示例:...

  • c#数组切片的示例代码解析

    C# 中没有像 Python 那样直接支持数组切片的语法,但是你可以使用 LINQ(Language Integrated Query)来实现类似的功能
    using System;
    using System.L...

  • 如何结合c#其他功能使用数组切片

    在C#中,数组切片是从一个数组中提取连续元素的过程 使用LINQ扩展方法: using System;
    using System.Linq; class Program
    { static void Main() { in...

  • 如何利用C++ set函数实现数据去重

    在 C++ 中,set 是一种关联容器,它包含一组唯一的元素。要使用 set 函数实现数据去重,你可以将需要去重的数据插入到 set 容器中,然后遍历 set 容器以获取去重...

  • C++ set函数对程序性能的影响有哪些

    在C++中,set 是一个关联容器,它包含一组唯一的元素。set 通常使用红黑树实现,这是一种自平衡二叉搜索树。set 函数对程序性能的影响主要取决于以下几点: 插入...

  • 在C++中如何自定义set函数的比较规则

    在 C++ 中,要自定义 set 容器的比较规则,需要创建一个自定义的比较类或者结构体,并重载 operator() 函数。然后将这个自定义比较类作为模板参数传递给 std::se...

  • C++ set函数在不同容器中的表现差异

    C++ 中的 set 是一个关联容器,它包含一组唯一的元素,并按照特定的排序规则进行存储 std::set:这是一个有序集合,其中的元素按照升序排列。std::set 不支持下标...