Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 3D 数据结构。其中我有值:0 - n^3。例如:如果 n = 3,则 A[3][3][3] 将包含值 0 - 26。
现在我想知道 0 - 26 -> 没有任何循环和迭代的随机值的位置(来自 A[][][] 的 i,j,k)。
例如,如果我给出 1,该函数应该返回 0,0,1。
谁能帮我解决这个问题?
提示:使用余数运算符 ( %)。(例如5 % 3 == 2,5 / 3 == 1)
%
5 % 3 == 2
5 / 3 == 1