Tag

Array Implementation

0 views collected around this technical thread.

Full-Stack Internet Architecture
Full-Stack Internet Architecture
Oct 23, 2020 · Fundamentals

Implementing Queues in Java: Array, Linked List, and List Approaches

This article explains the concept of FIFO queues, outlines their key properties, and provides three Java implementations—using an array, a linked list, and a List—complete with source code, usage examples, and typical application scenarios.

AlgorithmArray ImplementationData Structure
0 likes · 8 min read
Implementing Queues in Java: Array, Linked List, and List Approaches
vivo Internet Technology
vivo Internet Technology
Dec 11, 2019 · Frontend Development

Deep Dive into JavaScript Array Implementation in V8 Engine

The article explains how V8 implements JavaScript arrays using two storage strategies—Fast Elements with contiguous memory that dynamically resizes, and Slow Elements backed by a hash table—detailing the heuristics for converting between them and contrasting this design with traditional fixed‑type, fixed‑size arrays.

Array ImplementationFast ArrayFrontend Development
0 likes · 13 min read
Deep Dive into JavaScript Array Implementation in V8 Engine