如何在c中使用一维数组表示二维矩阵

发布于 2024-10-30 22:24:52 字数 137 浏览 2 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

一世旳自豪 2024-11-06 22:24:52

您可以将其表示为一维数组,但您必须注意逻辑,哪个索引属于哪个行和列。

例如:对于 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.

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