C++ - SetUnion 函数的字符串数组参数

C++ - String Array Parameter for SetUnion function

我写了一个函数来计算两个集合的并集。

我 运行 遇到了几个编译错误,我相信这部分是由于我如何制作 StringUnion 数组并声明它,但到目前为止我所做的一切都不起作用。

这是我的头文件。

#ifndef StringSet_header
#define StringSet_header
#include <memory>
#include <string>

using std::string;
using std::unique_ptr;
using std::make_unique;

class StringSet{
public:
    //create an empty set
    StringSet() = default;
    StringSet(int capacity);

    //copy a set
    StringSet(const StringSet &);

    StringSet& operator[](const int);

    //Insert a string to the set
    bool insert(string);

    //Remove a string from the set
    bool remove(string);

    //Test whether a string is in the set
    int find(string) const;

    //Get the size of the set
    int size() const;

    //get string at position i
    string get(int i) const;

    //Return the set union of the set and another StringSet
    StringSet setunion(const StringSet&) const;

    //Return the intersection of the set and another StringSet
    StringSet intersection(const StringSet&) const;

    //Return the set diffference of the set and another StringSet
    StringSet difference(const StringSet&) const;

    //prevent default copy assignment
    StringSet& operator=(const StringSet&) = delete;

    int NOT_FOUND = -1;
    static constexpr int def_capacity {4};
private:
    int arrSize {def_capacity};
    int currentSize {0};
    unique_ptr<string[]> arr {make_unique<string[]>(def_capacity)};

};

#endif

这是我 SetUnion 函数的实现。

StringSet StringSet::setunion(const StringSet &Array2) const
{
    StringSet StringUnion = make_unique<string[]>(arrSize);

    if (currentSize > 0)
    {
        for (auto i=0; i < currentSize; i++)
        {
            auto s = arr[i];
            StringUnion.insert(s);
        }
        for (auto i=0; i < Array2.currentSize; i++)
        {
            auto s = Array2[i];
            if (StringUnion.find(s) == NOT_FOUND)
            {
                StringUnion.insert(s);
            }
        }
    }
    else    
    {
        auto result = StringSet();
        return result;          //return empty StringSet}
    }
}

错误:

|error: conversion from 'std::_MakeUniq<std::basic_string<char> []>::__array {aka std::unique_ptr<std::basic_string<char> []>}' to non-scalar type 'StringSet' requested|

error: passing 'const StringSet' as 'this' argument discards qualifiers [-fpermissive]

error: no matching function for call to 'StringSet::find(StringSet&)'

error: no matching function for call to 'StringSet::insert(StringSet&)'

按预期插入和查找工作,我能够在我的删除函数和其他一些函数中使用插入和查找函数,为什么我不能在这里使用它们?

在你的行中

StringSet StringUnion = make_unique<string[]>(arrSize);

RHS使用c++14 construct that takes an std::size_t, and returns an std::unique_ptr<std::string> internally pointing to an array.

然而,LHS 是一个 StringSet 对象。

您没有定义采用这种类型的构造函数,所以这是个问题。

查看您的代码,StringSet 确实有一个 std::unique_ptr<std::string> 成员,因此您可以添加一个获取此类对象的构造函数,并从中初始化该成员。但是,不清楚这样一个 ctor 有什么好处,因为您已经有了一个 ctor

StringSet(int capacity);

基本上已经做了同样的事情。

正如 Leon 所写,您应该只使用这一行而不是您拥有的行

StringSet StringUnion(arrSize);

编译器提供的错误看起来很清楚。让我们检查一下。

  • 请求从 std::make_unique ... 到非标量类型 StringSet 的转换

是因为函数std::make_unique的定义,其中returns一个std::unique_ptr<T>。但是您正试图将其分配给 StringSet 类型的值。没有用于从 std::unique_ptr 创建 StringSet 的构造函数或运算符,因此编译器抱怨他不能这样做。

  • 错误:没有匹配的函数可以调用 'StringSet::find(StringSet&)'

你的 class StringSet 有一个 operator[] returns 对 StringSet 的引用所以 auto s = Array2[i]; 的类型是 StringSet.但是您的函数 findinsert 要求 std::string。由于没有构造函数可以提供从 StringSetstd::string 的隐式转换,编译器会报错。