Binary
Everything on SkillVeris tagged Binary — collected across the glossary, study notes, blog, and cheat sheets.
10 resources across 2 libraries
Study Notes(9)
Binary Data and Streams
Learn how Socket.IO transmits binary payloads like Buffers, ArrayBuffers, and Blobs, and how to chunk large files for efficient real-time streaming.
Binary Pattern Matching
Erlang's bit syntax lets you construct and deconstruct binary data with precise, declarative pattern matches, making it a natural fit for parsing network proto…
Text and Binary Frames
How WebSocket messages are broken into frames, and the difference between UTF-8 text frames and raw binary frames.
The Wasm Binary Format
A tour of the actual bytes inside a .wasm file: the module header, sections, and how instructions are encoded.
Binary Search in C
Learn binary search in C with syntax, a step-by-step explanation, working code, output, and O(log n) complexity analysis.
Binary Search
The classic O(log n) algorithm for finding a target in a sorted array using repeated halving, with correct boundary handling.
Binary Search Trees
A binary tree variant that maintains an ordering invariant, enabling fast search, insert, and delete operations.
Binary Trees
A hierarchical data structure where each node has at most two children, forming the foundation for many advanced tree structures.
Fenwick Trees (Binary Indexed Trees)
A compact array-based structure using the lowbit trick to compute prefix sums and point updates in O(log n).