缓存友好的二维数组的元素排序
有没有一种方法可以排列 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
空间填充曲线将 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.