2

矢量示例

vector<int> a{ 1,3,2 }; // initialize vectors directly  from elements
for (auto example : a)
{
    cout << example << " ";   // print 1 5 46 89
}
MinHeap<int> p{ 1,5,6,8 };    // i want to do the same with my custom class   

知道如何在花括号中接受多个参数并形成一个数组吗?

std::vector类用于std::allocator分配内存,但我不知道如何在自定义类中使用它。 VS 代码显示std::allocator

我做了同样的事情,但它不像那样工作

template<typename T>
class MinHeap
{
    // ...
public:
    MinHeap(size_t size, const allocator<T>& a)
    {
        cout << a.max_size << endl;
    }
    // ...
};

菜鸟在这里....

4

1 回答 1

5

知道如何在花括号中接受多个参数 [...]

它被称为列表初始化。您需要编写一个接受std::initilizer_list(如评论中提到的@Retired Ninja)作为参数的构造函数,以便可以在您的MinHeap类中实现它。

这意味着您需要如下内容:

#include <iostream>
#include <vector>
#include <initializer_list> // std::initializer_list

template<typename T> class MinHeap final
{
    std::vector<T> mStorage;

public:
    MinHeap(const std::initializer_list<T> iniList)  // ---> provide this constructor 
        : mStorage{ iniList }
    {}
    // ... other constructors and code!
    
    // optional: to use inside range based for loop 
    auto begin() -> decltype(mStorage.begin()) { return std::begin(mStorage);  }
    auto end()  -> decltype(mStorage.end()) { return std::end(mStorage);  }
};

int main()
{
    MinHeap<int> p{ 1, 5, 6, 8 }; // now you can

    for (const int ele : p)   std::cout << ele << " ";
}

现场演示

于 2021-07-24T06:39:02.953 回答