Linear octrees
Appearance
An octree is said to be complete if every internal node has exactly 8 child nodes. It is sufficient to store the complete list of leaf nodes of a complete octree. Such a representation is refered to a Linear octree, since a linear array is sufficient for this representation instead of the tree data structure. All the internal nodes of the octree can be generated from the list of its leaf nodes. Space filling curves are often used to represent linear octrees.