Skip to main content

Section 14.10 Vocabulary

row-major traversal:
Traversing a 2D structure one row at a time. Typically using a nested loop where the outer loop iterates through the rows.
column-major traversal:
Traversing a 2D structure one column at a time. Typically using a nested loop where the outer loop iterates through the columns.
rectangular:
A multidimensional structure where every the length of every row has the same length, every column has the same height, etc...
You have attempted of activities on this page.