string类型转VECTOR
时间: 2023-12-19 12:04:13 浏览: 85
您好!您可以使用以下方法将string类型转换为vector:
1. 使用构造函数:
```c++
std::string str = "hello world";
std::vector<char> vec(str.begin(), str.end());
```
2. 使用assign()函数:
```c++
std::string str = "hello world";
std::vector<char> vec;
vec.assign(str.begin(), str.end());
```
3. 使用resize()函数:
```c++
std::string str = "hello world";
std::vector<char> vec;
vec.resize(str.size());
std::copy(str.begin(), str.end(), vec.begin());
```
相关问题
以c++专家身份 写一个模板函数输入参数为int或者string类型的vector ,实现比较
以下是一个可以实现对两个 `vector` 进行比较的 C++ 模板函数:
```cpp
#include <iostream>
#include <vector>
#include <string>
template<typename T>
bool isEqual(const std::vector<T>& v1, const std::vector<T>& v2) {
if (v1.size() != v2.size()) {
return false;
}
for (size_t i = 0; i < v1.size(); ++i) {
if (v1[i] != v2[i]) {
return false;
}
}
return true;
}
int main() {
std::vector<int> v1{ 1, 2, 3 };
std::vector<int> v2{ 1, 2, 3 };
std::vector<int> v3{ 1, 2, 4 };
std::vector<std::string> v4{ "hello", "world" };
std::vector<std::string> v5{ "hello", "world" };
std::vector<std::string> v6{ "hello", "cpp" };
std::cout << std::boolalpha;
std::cout << isEqual(v1, v2) << std::endl; // 输出 true
std::cout << isEqual(v1, v3) << std::endl; // 输出 false
std::cout << isEqual(v4, v5) << std::endl; // 输出 true
std::cout << isEqual(v4, v6) << std::endl; // 输出 false
return 0;
}
```
这个示例程序定义了一个模板函数 `isEqual`,用于比较两个 `vector` 是否相等。在 `main` 函数中,我们分别定义了四个 `vector`,其中 `v1` 和 `v2`,`v4` 和 `v5` 分别是相等的,而 `v1` 和 `v3`,`v4` 和 `v6` 则分别是不相等的。最后,我们分别调用 `isEqual` 函数来比较这些 `vector`,并将结果输出到控制台。
需要注意的是,这个模板函数只能比较类型相同的 `vector`,因此不能将一个 `vector<int>` 和一个 `vector<std::string>` 进行比较。
再将刚刚的string转换为vector<A> v
可以使用stringstream和getline函数将字符串按照指定的分隔符(例如空格)分割成多个子串,然后将每个子串转换成对应的类型并存入vector中。具体实现如下:
```c++
#include <iostream>
#include <vector>
#include <sstream>
using namespace std;
struct A {
int x, y;
};
int main() {
string s = "1 2 3 4 5 6";
vector<A> v;
stringstream ss(s);
string str;
while (getline(ss, str, ' ')) { // 按照空格分割字符串
int x = stoi(str); // 将子串转换成int类型
getline(ss, str, ' ');
int y = stoi(str);
v.push_back({x, y}); // 存入vector中
}
for (auto a : v) {
cout << a.x << " " << a.y << endl;
}
return 0;
}
```
输出结果为:
```
1 2
3 4
5 6
```
阅读全文