gpt4 book ai didi

c++ - 根据用户输入用字母填充 vector ,并将开始和结束放在四肢上

转载 作者:行者123 更新时间:2023-12-01 14:35:48 25 4
gpt4 key购买 nike

我正在尝试制作一个如下所示的 vector :alphabet= {start,A,B,C,D,E,F,G,H,I,J,K,etc..,end}

字母表不是从 A 到 Z,而是用户输入值。因此,如果用户输入 5,我希望 vector 为:{开始,A,B,C,D,E,结束}

我尝试使用 iota,但我不知道如何在 vector 的末端插入“开始”和“结束”

vector<string> alphabet;
iota(alphabet.start(), alphabet.end(), 'A');

如何推送 startend 值?

最佳答案

对于字母表的前5个字母

#include <iostream>
#include <vector>
#include <string>
#include <numeric>

int main() {
// vector needs to be allocated, +2 is for start and end
std::vector<std::string> alphabet(5+2);
// front() gives you reference to first item
alphabet.front() = "start";
// end() gives you reference to last item
alphabet.back() = "end";
// you can use iota, but skipping the first and last item in vector
std::iota(std::next(alphabet.begin()), std::prev(alphabet.end()), 'A');

for (const auto& S : alphabet)
std::cout<<S<< ", ";
}

此代码块的输出为:start, A, B, C, D, E, end,

关于c++ - 根据用户输入用字母填充 vector ,并将开始和结束放在四肢上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62797298/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com