@tomaszjarosz/react-visualizers 0.4.14 → 0.4.15
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 +3 -2
- package/dist/index.cjs +683 -154
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.js +683 -154
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ Interactive algorithm and data structure visualizers for React. Perfect for lear
|
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
|
-
- **
|
|
11
|
+
- **54 interactive visualizers** covering algorithms, data structures, and distributed systems
|
|
12
12
|
- **Interview Mode** with built-in questions, scoring, hints, and explanations
|
|
13
13
|
- **Step-by-step animations** with playback controls (play, pause, step forward/back)
|
|
14
14
|
- **Code highlighting** showing the current line being executed
|
|
@@ -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 (17)
|
|
123
123
|
|
|
124
124
|
Interview visualizers include built-in questions with multiple choice answers, hints, and detailed explanations. Perfect for interview preparation.
|
|
125
125
|
|
|
@@ -141,6 +141,7 @@ Interview visualizers include built-in questions with multiple choice answers, h
|
|
|
141
141
|
| `SkipListInterviewVisualizer` | Probabilistic levels, expected complexity, Redis |
|
|
142
142
|
| `LinkedListInterviewVisualizer` | Two-pointer techniques, cycle detection, reversal |
|
|
143
143
|
| `HeapInterviewVisualizer` | Heap property, HeapSort, time complexity, priority queues |
|
|
144
|
+
| `SegmentTreeInterviewVisualizer` | Range queries, point updates, lazy propagation, space complexity |
|
|
144
145
|
|
|
145
146
|
## Interview Mode Usage
|
|
146
147
|
|