向量Vector是一個很好的和優雅的解決你的問題。這是針對您的問題的建議解決方案。
#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
#include <iterator>
#include <vector>
using namespace std;
vector<vector<string>> strTo2DStr(const string& str, const int& r, const int& c)
{
vector<vector<string>> mat;
int rows(r), cols(c);
vector<string> words;
istringstream ss(str);
copy(istream_iterator<string>(ss),istream_iterator<string>(),back_inserter(words));
int counter(0);
for (int i(0); i < rows; ++i){
vector<string> temp;
for (int j(0); j < cols; ++j){
if (counter < words.size())
temp.push_back(words[counter++]);
else
temp.push_back("");
}
mat.push_back(temp);
}
return mat;
}
int main()
{
string str("Hello I am writing c++ code");
int rows(3), cols(3);
vector< vector<string> > mat = strTo2DStr(str,rows,cols);
cout << str << endl << endl;
for (int i(0); i < rows; ++i)
for (int j(0); j < cols; ++j)
cout << "mat[" << i << "]["<< j << "]= " << mat[i][j] << " " << endl;
return 0;
}
該解決方案具有靈活性,您可以選擇行數和列數。結果是
Hello I am writing c++ code
mat[0][0]= Hello
mat[0][1]= I
mat[0][2]= am
mat[1][0]= writing
mat[1][1]= c++
mat[1][2]= code
mat[2][0]=
mat[2][1]=
mat[2][2]=
爲什麼你需要這個? – gsamaras
你有什麼試過?你的來源是什麼? – NathanOliver
你做了什麼研究? – Eddge