@tomaszjarosz/react-visualizers 0.2.1 → 0.2.3
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/dist/index.cjs +106 -38
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +106 -38
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3238,7 +3238,58 @@ const DijkstraVisualizerComponent = ({
|
|
|
3238
3238
|
] })
|
|
3239
3239
|
] }) }) }),
|
|
3240
3240
|
/* @__PURE__ */ jsx("div", { className: "p-4 overflow-x-auto", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col lg:flex-row gap-4 min-w-0", children: [
|
|
3241
|
-
/* @__PURE__ */ jsxs(VisualizationArea, { minHeight:
|
|
3241
|
+
/* @__PURE__ */ jsxs(VisualizationArea, { minHeight: 500, className: "flex-1 min-w-0", children: [
|
|
3242
|
+
/* @__PURE__ */ jsxs("div", { className: "mb-4 p-4 bg-gradient-to-r from-orange-50 to-amber-50 rounded-xl border-2 border-orange-200", children: [
|
|
3243
|
+
/* @__PURE__ */ jsx("div", { className: "text-sm font-semibold text-orange-800 mb-3", children: "Distance Array (shortest paths from node 0)" }),
|
|
3244
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-2 justify-center", children: distances.map((dist, idx) => {
|
|
3245
|
+
const isSource = idx === 0;
|
|
3246
|
+
const isCurrent = idx === current;
|
|
3247
|
+
const isVisited = visited.includes(idx);
|
|
3248
|
+
return /* @__PURE__ */ jsxs(
|
|
3249
|
+
"div",
|
|
3250
|
+
{
|
|
3251
|
+
className: `flex flex-col items-center p-2 rounded-lg border-2 min-w-[60px] transition-colors ${isCurrent ? "bg-yellow-100 border-yellow-400 ring-2 ring-yellow-300" : isVisited ? "bg-green-100 border-green-400" : "bg-white border-gray-300"}`,
|
|
3252
|
+
children: [
|
|
3253
|
+
/* @__PURE__ */ jsxs("div", { className: `text-xs font-medium ${isCurrent ? "text-yellow-800" : isVisited ? "text-green-800" : "text-gray-500"}`, children: [
|
|
3254
|
+
"Node ",
|
|
3255
|
+
idx,
|
|
3256
|
+
isSource && /* @__PURE__ */ jsx("span", { className: "ml-1", children: "(src)" })
|
|
3257
|
+
] }),
|
|
3258
|
+
/* @__PURE__ */ jsx("div", { className: `text-xl font-bold font-mono ${isCurrent ? "text-yellow-900" : isVisited ? "text-green-900" : "text-gray-700"}`, children: dist === Infinity ? "∞" : dist }),
|
|
3259
|
+
isCurrent && /* @__PURE__ */ jsx("div", { className: "text-xs text-yellow-700 font-bold", children: "← PROCESSING" }),
|
|
3260
|
+
isVisited && !isCurrent && /* @__PURE__ */ jsx("div", { className: "text-xs text-green-600", children: "✓ Final" })
|
|
3261
|
+
]
|
|
3262
|
+
},
|
|
3263
|
+
idx
|
|
3264
|
+
);
|
|
3265
|
+
}) })
|
|
3266
|
+
] }),
|
|
3267
|
+
/* @__PURE__ */ jsxs("div", { className: "mb-4 p-3 bg-blue-50 rounded-lg border border-blue-200", children: [
|
|
3268
|
+
/* @__PURE__ */ jsx("div", { className: "text-sm font-semibold text-blue-800 mb-2", children: "Relaxation Formula" }),
|
|
3269
|
+
/* @__PURE__ */ jsxs("div", { className: "font-mono text-sm text-center", children: [
|
|
3270
|
+
"if dist[u] + weight(u,v) < dist[v] → ",
|
|
3271
|
+
/* @__PURE__ */ jsx("span", { className: "text-green-600 font-bold", children: "update dist[v]" })
|
|
3272
|
+
] })
|
|
3273
|
+
] }),
|
|
3274
|
+
/* @__PURE__ */ jsxs("div", { className: "mb-4 p-3 bg-orange-50 rounded-lg border border-orange-200", children: [
|
|
3275
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 mb-2", children: [
|
|
3276
|
+
/* @__PURE__ */ jsx("span", { className: "text-sm font-semibold text-orange-800", children: "Priority Queue (min-heap)" }),
|
|
3277
|
+
/* @__PURE__ */ jsx("span", { className: "text-xs text-orange-600", children: "(node:distance)" })
|
|
3278
|
+
] }),
|
|
3279
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-wrap gap-2", children: priorityQueue.length > 0 ? priorityQueue.sort((a, b) => a.dist - b.dist).map((item, index) => /* @__PURE__ */ jsxs(
|
|
3280
|
+
"span",
|
|
3281
|
+
{
|
|
3282
|
+
className: `px-3 py-1.5 rounded-lg font-mono text-sm font-medium ${index === 0 ? "bg-orange-200 text-orange-900 ring-2 ring-orange-400" : "bg-white text-orange-800 border border-orange-300"}`,
|
|
3283
|
+
children: [
|
|
3284
|
+
item.node,
|
|
3285
|
+
":",
|
|
3286
|
+
item.dist,
|
|
3287
|
+
index === 0 && /* @__PURE__ */ jsx("span", { className: "ml-1 text-xs", children: "← MIN" })
|
|
3288
|
+
]
|
|
3289
|
+
},
|
|
3290
|
+
index
|
|
3291
|
+
)) : /* @__PURE__ */ jsx("span", { className: "text-sm text-gray-400 italic", children: "empty" }) })
|
|
3292
|
+
] }),
|
|
3242
3293
|
/* @__PURE__ */ jsx("div", { className: "bg-gray-50 rounded-lg", children: /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 420 300", className: "w-full h-64 md:h-72", children: [
|
|
3243
3294
|
graph.edges.map((edge, index) => {
|
|
3244
3295
|
const fromNode = graph.nodes[edge.from];
|
|
@@ -3308,7 +3359,7 @@ const DijkstraVisualizerComponent = ({
|
|
|
3308
3359
|
cx: node.x,
|
|
3309
3360
|
cy: node.y,
|
|
3310
3361
|
r: 22,
|
|
3311
|
-
className: `${getNodeColor(node.id)} stroke-2 transition-
|
|
3362
|
+
className: `${getNodeColor(node.id)} stroke-2 transition-colors duration-300`
|
|
3312
3363
|
}
|
|
3313
3364
|
),
|
|
3314
3365
|
/* @__PURE__ */ jsx(
|
|
@@ -3323,38 +3374,6 @@ const DijkstraVisualizerComponent = ({
|
|
|
3323
3374
|
)
|
|
3324
3375
|
] }, node.id))
|
|
3325
3376
|
] }) }),
|
|
3326
|
-
/* @__PURE__ */ jsxs("div", { className: "mt-3 flex flex-wrap gap-3", children: [
|
|
3327
|
-
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 flex-wrap", children: [
|
|
3328
|
-
/* @__PURE__ */ jsx("span", { className: "text-xs font-medium text-gray-600", children: "Dist:" }),
|
|
3329
|
-
distances.map((dist, idx) => /* @__PURE__ */ jsxs(
|
|
3330
|
-
"span",
|
|
3331
|
-
{
|
|
3332
|
-
className: `px-2 py-0.5 text-xs font-mono rounded ${idx === current ? "bg-yellow-200 text-yellow-900" : visited.includes(idx) ? "bg-green-100 text-green-800" : "bg-gray-100 text-gray-600"}`,
|
|
3333
|
-
children: [
|
|
3334
|
-
idx,
|
|
3335
|
-
":",
|
|
3336
|
-
dist === Infinity ? "∞" : dist
|
|
3337
|
-
]
|
|
3338
|
-
},
|
|
3339
|
-
idx
|
|
3340
|
-
))
|
|
3341
|
-
] }),
|
|
3342
|
-
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2 flex-wrap", children: [
|
|
3343
|
-
/* @__PURE__ */ jsx("span", { className: "text-xs font-medium text-gray-600", children: "PQ:" }),
|
|
3344
|
-
priorityQueue.length > 0 ? priorityQueue.sort((a, b) => a.dist - b.dist).map((item, index) => /* @__PURE__ */ jsxs(
|
|
3345
|
-
"span",
|
|
3346
|
-
{
|
|
3347
|
-
className: "px-2 py-0.5 bg-orange-100 text-orange-800 text-xs rounded font-mono",
|
|
3348
|
-
children: [
|
|
3349
|
-
item.node,
|
|
3350
|
-
":",
|
|
3351
|
-
item.dist
|
|
3352
|
-
]
|
|
3353
|
-
},
|
|
3354
|
-
index
|
|
3355
|
-
)) : /* @__PURE__ */ jsx("span", { className: "text-xs text-gray-400", children: "empty" })
|
|
3356
|
-
] })
|
|
3357
|
-
] }),
|
|
3358
3377
|
/* @__PURE__ */ jsx("div", { className: "mt-3", children: /* @__PURE__ */ jsx(
|
|
3359
3378
|
StatusPanel,
|
|
3360
3379
|
{
|
|
@@ -5820,6 +5839,7 @@ function generateArrayListSteps() {
|
|
|
5820
5839
|
if (op === "add" && value !== void 0) {
|
|
5821
5840
|
if (size === capacity) {
|
|
5822
5841
|
const oldCapacity = capacity;
|
|
5842
|
+
const oldArray = [...array];
|
|
5823
5843
|
capacity *= 2;
|
|
5824
5844
|
const newArray = new Array(capacity).fill(null);
|
|
5825
5845
|
for (let i = 0; i < size; i++) {
|
|
@@ -5829,9 +5849,11 @@ function generateArrayListSteps() {
|
|
|
5829
5849
|
steps.push({
|
|
5830
5850
|
operation: "resize",
|
|
5831
5851
|
array: [...array],
|
|
5852
|
+
oldArray,
|
|
5832
5853
|
size,
|
|
5833
5854
|
capacity,
|
|
5834
|
-
|
|
5855
|
+
oldCapacity,
|
|
5856
|
+
description: `Resize! Array full (${oldCapacity}/${oldCapacity}). Create new array with capacity ${capacity}, copy ${size} elements → O(n)`,
|
|
5835
5857
|
codeLine: 2,
|
|
5836
5858
|
variables: { oldCapacity, newCapacity: capacity, copied: size }
|
|
5837
5859
|
});
|
|
@@ -5961,7 +5983,7 @@ const ArrayListVisualizerComponent = ({
|
|
|
5961
5983
|
capacity: INITIAL_CAPACITY$1,
|
|
5962
5984
|
description: ""
|
|
5963
5985
|
};
|
|
5964
|
-
const { array, size, capacity, highlightIndex, shiftIndices, description } = stepData;
|
|
5986
|
+
const { array, size, capacity, highlightIndex, shiftIndices, description, oldArray, oldCapacity, operation } = stepData;
|
|
5965
5987
|
const getCellStyle = (idx) => {
|
|
5966
5988
|
if (idx === highlightIndex) {
|
|
5967
5989
|
return "bg-orange-500 border-orange-600 text-white";
|
|
@@ -5999,7 +6021,53 @@ const ArrayListVisualizerComponent = ({
|
|
|
5999
6021
|
/* @__PURE__ */ jsx(ShareButton, { onShare: handleShare })
|
|
6000
6022
|
] }) }),
|
|
6001
6023
|
/* @__PURE__ */ jsx("div", { className: "p-4", children: /* @__PURE__ */ jsxs("div", { className: `flex gap-4 ${showCode ? "flex-col lg:flex-row" : ""}`, children: [
|
|
6002
|
-
/* @__PURE__ */ jsxs(VisualizationArea, { minHeight:
|
|
6024
|
+
/* @__PURE__ */ jsxs(VisualizationArea, { minHeight: 400, className: showCode ? "flex-1" : "w-full", children: [
|
|
6025
|
+
operation === "resize" && oldArray && /* @__PURE__ */ jsxs("div", { className: "mb-4 p-4 bg-gradient-to-r from-red-50 to-orange-50 rounded-xl border-2 border-red-200", children: [
|
|
6026
|
+
/* @__PURE__ */ jsxs("div", { className: "text-sm font-bold text-red-700 mb-3 flex items-center gap-2", children: [
|
|
6027
|
+
/* @__PURE__ */ jsx("span", { className: "text-xl", children: "⚠️" }),
|
|
6028
|
+
" RESIZE OPERATION (O(n) cost!)"
|
|
6029
|
+
] }),
|
|
6030
|
+
/* @__PURE__ */ jsxs("div", { className: "grid grid-cols-1 md:grid-cols-2 gap-4", children: [
|
|
6031
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
6032
|
+
/* @__PURE__ */ jsxs("div", { className: "text-xs font-medium text-gray-600 mb-2", children: [
|
|
6033
|
+
"OLD Array (capacity: ",
|
|
6034
|
+
oldCapacity,
|
|
6035
|
+
") - FULL!"
|
|
6036
|
+
] }),
|
|
6037
|
+
/* @__PURE__ */ jsx("div", { className: "bg-white rounded-lg p-2 border border-red-200", children: /* @__PURE__ */ jsx("div", { className: "flex gap-1 flex-wrap", children: oldArray.map((val, idx) => /* @__PURE__ */ jsx(
|
|
6038
|
+
"div",
|
|
6039
|
+
{
|
|
6040
|
+
className: "w-10 h-10 flex items-center justify-center rounded border-2 text-sm font-medium bg-red-100 border-red-300 text-red-800",
|
|
6041
|
+
children: val !== null ? val : ""
|
|
6042
|
+
},
|
|
6043
|
+
idx
|
|
6044
|
+
)) }) })
|
|
6045
|
+
] }),
|
|
6046
|
+
/* @__PURE__ */ jsx("div", { className: "hidden md:flex items-center justify-center absolute left-1/2 -translate-x-1/2", children: /* @__PURE__ */ jsx("div", { className: "text-2xl text-orange-500", children: "→" }) }),
|
|
6047
|
+
/* @__PURE__ */ jsxs("div", { children: [
|
|
6048
|
+
/* @__PURE__ */ jsxs("div", { className: "text-xs font-medium text-gray-600 mb-2", children: [
|
|
6049
|
+
"NEW Array (capacity: ",
|
|
6050
|
+
capacity,
|
|
6051
|
+
") - 2x bigger"
|
|
6052
|
+
] }),
|
|
6053
|
+
/* @__PURE__ */ jsx("div", { className: "bg-white rounded-lg p-2 border border-green-200", children: /* @__PURE__ */ jsx("div", { className: "flex gap-1 flex-wrap", children: array.map((val, idx) => /* @__PURE__ */ jsx(
|
|
6054
|
+
"div",
|
|
6055
|
+
{
|
|
6056
|
+
className: `w-10 h-10 flex items-center justify-center rounded border-2 text-sm font-medium ${idx < size ? "bg-green-100 border-green-300 text-green-800" : "bg-gray-100 border-gray-200 text-gray-300"}`,
|
|
6057
|
+
children: val !== null ? val : ""
|
|
6058
|
+
},
|
|
6059
|
+
idx
|
|
6060
|
+
)) }) })
|
|
6061
|
+
] })
|
|
6062
|
+
] }),
|
|
6063
|
+
/* @__PURE__ */ jsxs("div", { className: "mt-3 text-xs text-red-600 text-center", children: [
|
|
6064
|
+
"All ",
|
|
6065
|
+
size,
|
|
6066
|
+
" elements copied to new array → This is why add() is O(1) ",
|
|
6067
|
+
/* @__PURE__ */ jsx("strong", { children: "amortized" }),
|
|
6068
|
+
", not O(1)"
|
|
6069
|
+
] })
|
|
6070
|
+
] }),
|
|
6003
6071
|
/* @__PURE__ */ jsxs("div", { className: "mb-4", children: [
|
|
6004
6072
|
/* @__PURE__ */ jsxs("div", { className: "text-sm font-medium text-gray-700 mb-2", children: [
|
|
6005
6073
|
"Internal Array (capacity: ",
|
|
@@ -6010,7 +6078,7 @@ const ArrayListVisualizerComponent = ({
|
|
|
6010
6078
|
/* @__PURE__ */ jsx(
|
|
6011
6079
|
"div",
|
|
6012
6080
|
{
|
|
6013
|
-
className: `w-12 h-12 flex items-center justify-center rounded border-2 font-medium transition-
|
|
6081
|
+
className: `w-12 h-12 flex items-center justify-center rounded border-2 font-medium transition-colors ${getCellStyle(idx)}`,
|
|
6014
6082
|
children: val !== null ? val : ""
|
|
6015
6083
|
}
|
|
6016
6084
|
),
|