Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嘿,我正在尝试创建一个函数,该函数自身找到得分最高的单词,然后列出该单词,我目前正在使用向量来查找得分最高的单词,但我希望从中获取单词我的字典。
您存储单词的向量是 的向量std::string,而不是Word指针向量。因此,您不能compare_by_score像期望的那样使用后一种论点,而不是第一种论点。
std::string
Word
compare_by_score
要么将Word指针存储在向量中,要么将compare_by_score函数更改为接受const std::string&参数,然后在函数中将其转换为Word对象。
const std::string&