Glossary
Searchable terminology from accessibility, web standards, and related fields.
2 results found in Computer Science Education.
- Binary Search Tree (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 th…
- 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…