Array Glossary

Browse 4 array terms defined in plain English, from the cultural dictionary of computing.

4 Array Terms

APL
A Programming Language, a mathematically-oriented language that uses a special set of symbolic operators to manipulate arrays with extraordinary conciseness....
Cell Array
A MATLAB data type that holds an indexed set of elements where each cell can contain any type of data, including other arrays or objects. Unlike regular...
Sliding Window
An algorithmic technique that maintains a window (subarray/substring) that slides through data, expanding or contracting to find optimal solutions. Fixed-size...
Two Pointers
An algorithmic technique using two indices that traverse an array from different positions or at different speeds to solve problems in O(n) time instead of...

Related Topics