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

I have been working in jQuery and I was given this code for a quadtree in javascript:

map = array(
    array(array(1,2,3,4), array(1,2,3,4), array(1,2,3,4), array(1,2,3,4)),
    array(array(1,2,3,4), array(1,2,3,4), array(1,2,3,4), array(1,2,3,4)),
    array(array(1,2,3,4), array(1,2,3,4), array(1,2,3,4), array(1,2,3,4)),
    array(array(1,2,3,4), array(1,2,3,4), array(1,2,3,4), array(1,2,3,4))
);

map[0][3][3] = "END OF ARRAY 1";
map[1][3][3] = "END OF ARRAY 2";

However this just looks like a 3d array to me, am I being stupid? ^.^

share|improve this question
1  
one $ sign alone does not justify a jQuery tag. – jAndy Jul 24 '10 at 11:20
Edited, apologies - I got the code and put it up without editing it. – Neurofluxation Jul 24 '10 at 11:27

1 Answer

up vote 5 down vote accepted

Since all nodes have exactly four children it is a quadtree. It is also a 3D array, since it is three levels deep.

share|improve this answer
Thank you - I get confused so easily :/ – Neurofluxation Jul 24 '10 at 12:49

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.