Tag

random access

0 views collected around this technical thread.

Refining Core Development Skills
Refining Core Development Skills
Oct 22, 2019 · Fundamentals

Experimental Study of Sequential vs Random Memory Access Latency in C

This article presents a series of C‑based experiments that measure how sequential and random memory accesses behave across different array sizes and strides, revealing that random accesses can be up to four times slower than sequential ones due to cache and memory I/O effects.

C programmingCachelatency
0 likes · 6 min read
Experimental Study of Sequential vs Random Memory Access Latency in C
Architect's Tech Stack
Architect's Tech Stack
Mar 1, 2019 · Fundamentals

Understanding Arrays: Random Access, Insertion, Deletion, and Efficiency

This article explains what arrays are, how they enable O(1) random access through address calculation, the time‑complexities of insertion and deletion operations, techniques for improving array efficiency, and why zero‑based indexing is used, comparing arrays with dynamic containers like ArrayList.

ArrayData StructureFundamentals
0 likes · 6 min read
Understanding Arrays: Random Access, Insertion, Deletion, and Efficiency
Tencent Music Tech Team
Tencent Music Tech Team
Apr 21, 2017 · Fundamentals

Understanding M4A File Structure and Using the Sample Table Box for Random Access

The article outlines the MP4‑based M4A container’s hierarchical box format, details the Sample Table (stbl) and its essential sub‑boxes (stts, stsc, stco/co64, stsz) that map playback time to file offsets, explains time‑scale conversion, optional boxes, and provides pseudo‑code and parsing tips for precise random‑access seeking.

M4AMP4Media File Format
0 likes · 14 min read
Understanding M4A File Structure and Using the Sample Table Box for Random Access