@tomaszjarosz/react-visualizers 0.4.19 → 0.4.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/dist/index.cjs +3817 -299
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +58 -0
- package/dist/index.js +3817 -299
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +96 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,7 +119,7 @@ function App() {
|
|
|
119
119
|
| `GCVisualizer` | JVM generational garbage collection |
|
|
120
120
|
| `SQLJoinVisualizer` | SQL JOIN operations (INNER, LEFT, RIGHT, FULL) |
|
|
121
121
|
|
|
122
|
-
### Interview Mode (
|
|
122
|
+
### Interview Mode (34)
|
|
123
123
|
|
|
124
124
|
Interview visualizers include built-in questions with multiple choice answers, hints, and detailed explanations. Perfect for interview preparation.
|
|
125
125
|
|
|
@@ -153,6 +153,12 @@ Interview visualizers include built-in questions with multiple choice answers, h
|
|
|
153
153
|
| `EnumSetInterviewVisualizer` | Bit vector, O(1) ops, 35x memory savings vs HashSet |
|
|
154
154
|
| `BlockingQueueInterviewVisualizer` | Producer-consumer, put/take blocking, implementations |
|
|
155
155
|
| `CopyOnWriteInterviewVisualizer` | Lock-free reads, O(n) writes, snapshot iterators |
|
|
156
|
+
| `GCInterviewVisualizer` | Generational GC, Minor/Major GC, heap layout, promotion |
|
|
157
|
+
| `SQLJoinInterviewVisualizer` | INNER/LEFT/RIGHT/FULL JOIN, Nested Loop, Hash Join |
|
|
158
|
+
| `ImmutableCollectionsInterviewVisualizer` | List.of(), thread safety, null handling, copyOf() |
|
|
159
|
+
| `ListComparisonInterviewVisualizer` | ArrayList vs LinkedList, complexity, cache performance |
|
|
160
|
+
| `HashTableInterviewVisualizer` | Chaining, load factor, rehashing, hashCode contract |
|
|
161
|
+
| `SortingComparisonInterviewVisualizer` | Bubble vs Quick, stability, divide-and-conquer |
|
|
156
162
|
|
|
157
163
|
## Interview Mode Usage
|
|
158
164
|
|