缓存友好的二维数组的元素排序

发布于 2024-12-14 16:26:49 字数 124 浏览 0 评论 0原文

有没有一种方法可以排列 2D 数组中的元素(大小为 width * height 的 1D 数组,[y*width+x] 用于访问),以便小的笛卡尔距离倾向于转换为靠近的 1D 索引?我需要随机遍历 2D 数组,并希望优化缓存友好性。

Is there a way to arrange the elements in a 2D array (1D array with size width * height, [y*width+x] for access), so that small cartesian distances tend to translate into 1D indices that are close together? I need to do a random walk through a 2D array and want to optimize for cache-friendliness.

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

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

发布评论

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

评论(1

最好是你 2024-12-21 16:26:50

空间填充曲线将 2d 复杂度降低为 1d 复杂度。例如有 z 曲线、希尔伯特曲线和莫顿曲线。

A space-filling-curve reduces the 2d complexity to a 1d complexity. There are for example z-curve, hilbert curve and morton curve.

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