The loop step is the vector’s length. The following diagram pre-visualizes the code: Figure 5.8 – Computing z = x + y in chunks So, at the first iteration, our
Category: Tackling guarded record patterns
Summing two arrays via Vector API – Arrays, collections and data structuresSumming two arrays via Vector API – Arrays, collections and data structures
103. Summing two arrays via Vector API Summing two arrays is the perfect start for applying what we’ve learned in the preceding two problems. Let’s assume that we have the
Benchmarking Vector API – Arrays, collections and data structuresBenchmarking Vector API – Arrays, collections and data structures
105. Benchmarking Vector API Benchmarking Vector API can be accomplished via JMH. Let’s consider three Java arrays (x, y, z) each of 50,000,000 integers, and the following computation: z[i] =
Multiplying matrices via Vector API – Arrays, collections and data structuresMultiplying matrices via Vector API – Arrays, collections and data structures
107. Multiplying matrices via Vector API Let’s consider two matrices of 4×4 denoted as X and Y. The Z=X*Y is: Figure 5.10 – Multiplying two matrices (X * Y =
Dissecting factory methods for collections – Arrays, collections and data structuresDissecting factory methods for collections – Arrays, collections and data structures
109. Dissecting factory methods for collections Factory methods for collections are a must-have skill. Is very convenient to be able to quickly and effortlessly create and populate unmodifiable/immutable collections before
Introducing the Rope data structure – Arrays, collections and data structuresIntroducing the Rope data structure – Arrays, collections and data structures
112. Introducing the Rope data structure Prerequisite: Starting with this problem, we will cover a bunch of complex data structures that require previous experience with binary trees, lists, heaps, queues,