Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a first year computer engineering student and I'm quite new here. I have been learning Java for the past three and a half months, and C++ for six months before that. My knowledge of Java is limited to defining and using own methods, absolute basics of object-oriented programming like use of static data members and member visibility.

This afternoon, my Computer Programming prof taught us about multi-dimensional arrays in Java. About multi-dimensional arrays being simply arrays of arrays and so on. He mentioned that in nominal, educational programming, arrays beyond 2 dimensions are almost never used. Even 3D arrays are used only where absolutely essential, like carrying out scientific functions. This leaves next to zero use for 4D arrays as using them shows that "you're using the wrong datatype" in my prof's words.

However, i'd like to write a program in which the use of a 4D array, of any datatype, primitive or otherwise, is justified. The program must not be as trivial as printing the elements of the array.

I have no idea where to begin, this is why I am posting this here. I'd like your suggestions. Relevant problem statements, algorithms, and bits and pieces of code are also welcome.

Thank you.

Edit: Forgot to mention, I have absolutely no idea about working with GUI's in java, so please do not post ideas that implement GUI's.

share|improve this question

5 Answers

You could create a Sodoku hypercube with 4 dimensions and stores the numbers the user enters into a 4dimensional int array.

share|improve this answer
1  
I don't even know what a Sodoku hypercube is, but it sounds awesome! :) – david99world Apr 4 '11 at 17:43
Presumably, it's sudoku being played in 4 directions instead of common 2. See wikipedia article for common Sudoku which is 2D. – Victor Sorokin Apr 4 '11 at 18:40

Ideas:

- Matrix multiplication and it's applications like finding shortest path in graphs - Solving of systems of equations - Cryptography -- many cryptoprotocols represent data or keys or theirs internal structures in a form of matrices. - Any algo on graphs represented as matrices

I must have been having some kind of fixation on matrices, sorry :)

For 4D arrays one obvious thing I can think of is the representation of 3D environment changing in time, so 4th dimension represents time scale. Or any representation of 3D which have additional associated property placed in 4th dimension of array.

share|improve this answer
1  
But, a matrix is just 2D? – Ishtar Apr 4 '11 at 16:02

I'm not sure what specifically you could do with this, because I just started thinking about it. But you could possibly use a 4D array for some sort of basic physics simulation, like modeling a projectile flight involving some wind values and what not. That just came to mind because the term 4D always brings to mind that the "position" of any object is 4 values, with time as the 4th.

share|improve this answer

One use could be applying dynamic programming to a function that takes 4 integer parameters f(int x,int y,int z,int w). To avoid calling this expensive function over and over again, you can cache the results in a 4D array, results[x][y][z][w]=f(x,y,z,w);.

Now you just have to find an expensive integer function with arity of 4, oh, and a need for calculating it often...

share|improve this answer

Just to back him up,..your prof is quite right. I'm afraid I might be physically violent to anyone using a 4D+ array in production code.

It's kinda cool to be able to go into greater than 3 dimensions as an educational exercise but for real work it makes things way too complicated because we don't really have much comprehension of structures with greater than 3 dimensions.

The reason it's difficult to come up with a practical use for 4D+ arrays is because there is (almost) nothing that complicated in the real world to model.

You could look into modelling something like a tesseract , which is (in layman's terms ) a 4D cube or as Victor suggests use the 4th dimension to model constant time.

HTH

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.