如何在c中使用一维数组表示二维矩阵
在 c 的二维矩阵中,我如何知道元素何时仍在当前行而不是在一维数组中的矩阵的第二行。又名如何显示 d 位于顶行,d 位于这两个矩阵中的下一行?
ab c
def
或
abcd
efgh
in a two dimensional matrix in c how do i know when the element is still on the current line and not on the second line of a matrix in a 1 dimensional array. aka how do i show that d is on the top line and d is one the next line in these two matrixs?
a b c
d e f
or
a b c d
e f g h
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将其表示为一维数组,但您必须注意逻辑,哪个索引属于哪个行和列。
例如:对于 4×4 矩阵 - 索引 0 到 3 将位于第一行。第二个4-7,等等。
You can represent it in a 1D array, but you have to take care of the logic, which index belongs to which row and column.
e.g.: for a 4×4 matrix - index 0 to 3 would be on the first row. 4-7 on the second, etc.