← Writing · Reviews →

Glossary

Terms used in accessibility research and practice. Each entry has a definition, common aliases, and category tags.

Search results

Binary Search Tree(also: BST)
A node-based binary tree data structure in which each node has at most two children and satisfies the BST property: every value in the left subtree is less than the node's value, and every value in the right subtree is greater. This ordering enables efficient search, insertion,…
Data Structure
A way of organizing and storing data in a computer so that it can be accessed and modified efficiently. Common introductory data structures include arrays, linked lists, stacks, queues, trees (such as binary search trees), graphs, and hash tables, each with different access,…

2 results.