访问向量<向量 >元素为行和列

发布于 2024-10-18 09:04:10 字数 692 浏览 2 评论 0 原文

我正在尝试使用 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++;
}

我很想得到一个更干净的解决方案,就像我上面为该行所做的那样。 初始化一个字符串只是为了获取我需要的列,而我已经有了它,这不太好。此外,它还减慢了我的进程。

非常感谢那些愿意提供帮助的人。

I am trying to use a

vector<vector<char> > matrix;

as an actual matrix.

matrix is initialized with all '\0' and it gets filled in during the process.

let's imagine at a certain point of time I am in this situation:

     0   1  2  3
  0  a   b  c \0
  1  b   b \0 \0
  2  c  \0 \0 \0
  3  \0 \0 \0 \0

if I want to have a char * to the first row I can do a:

&word_square[0][0]

that will give me a pointer to the first row, pointer that I can use as a C char array (ie. "abc")

What if I want to get the first column in the same way?
Is it possible or I'll have to do it with a for?

int i =0;
string column;
while(matrix[i][0] != '\0' )
{
  column.push_back(matrix[i][0]);
  i++;
}

I would love to get a cleaner solution as I did above for the row.
initializing a string just for getting the column I need and I already have it's not so nice. Moreover it slows down my process.

Many thanks to those who will help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

雨巷深深 2024-10-25 09:04:10

使用向量<矢量 >,您无法保证内部向量将其数据连续存储在内存中,这意味着不可能有一个 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 a char* that points to the elements in column order unless you manually copy the data.

仙气飘飘 2024-10-25 09:04:10

您可以 切片 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.

彩扇题诗 2024-10-25 09:04:10

对于向量的向量来说是不可能的。最好的选择是编写自己的返回代理对象的类。

Impossible with a vector of vectors. Your best bet is to write your own class that returns proxy objects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文