访问向量<向量 >元素为行和列
我正在尝试使用 a
vector<vector<char> > matrix;
作为实际矩阵。
矩阵用全“\0”初始化,并在此过程中被填充。
让我们想象一下在某个时间点我处于这种情况:
0 1 2 3
0 a b c \0
1 b b \0 \0
2 c \0 \0 \0
3 \0 \0 \0 \0
如果我想要一个 char * 到第一行,我可以这样做:
&word_square[0][0]
这会给我一个指向第一行的指针,我可以将其用作 C 的指针char 数组(即“abc”)
如果我想以相同的方式获取第一列怎么办? 有可能吗,还是我必须用 for 来做?
int i =0;
string column;
while(matrix[i][0] != '\0' )
{
column.push_back(matrix[i][0]);
i++;
}
我很想得到一个更干净的解决方案,就像我上面为该行所做的那样。 初始化一个字符串只是为了获取我需要的列,而我已经有了它,这不太好。此外,它还减慢了我的进程。
非常感谢那些愿意提供帮助的人。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
向量<矢量 >
,您无法保证内部向量将其数据连续存储在内存中,这意味着不可能有一个char*
按列顺序指向元素,除非您手动复制数据。Using a
vector< vector<char> >
, you have no guarantee that the inner vectors store their data contiguously in memory, meaning there is no possible way to have achar*
that points to the elements in column order unless you manually copy the data.您可以 切片 std::valarray 来执行以下操作你有兴趣做。它们使用连续的内存,并且切片管理对原始数据对象的访问,因此不涉及复制。
You can slice a std::valarray to do something along the lines of what you're interested in doing. They use contiguous memory, and the slice manages access to the original data object, so there's no copying involved.
对于向量的向量来说是不可能的。最好的选择是编写自己的返回代理对象的类。
Impossible with a vector of vectors. Your best bet is to write your own class that returns proxy objects.