Last Updated:2025/11/20
To model a 3D grid stored in linear memory, I implemented a multidimensional array—a structure that, for 2D, is a vector of vectors and, for N dimensions, a vector of (N−1)-dimensional arrays—so an N-dimensional grid can be simulated on linear-addressed storage.
See correct answer
To model a 3D grid stored in linear memory, I implemented a multidimensional array—a structure that, for 2D, is a vector of vectors and, for N dimensions, a vector of (N−1)-dimensional arrays—so an N-dimensional grid can be simulated on linear-addressed storage.
音声機能が動作しない場合はこちらをご確認ください
Edit Histories(0)
Source Sentence
線形にアドレスされるメモリ上で3次元の格子を表現するために、私は多次元配列を実装しました。これは2次元の場合はベクトルのベクトルであり、一般にN次元では(N−1)次元配列のベクトルであって、N次元の格子状記憶領域を線形記憶上でシミュレートできます。