Skip to content

Commit 8c5f8c5

Browse files
TamimEhsanTamimEhsan
authored andcommitted
refactor: Move recursion planner to lib/algorithms; remove dead bst.js
The recursion-tree builders + recursionActions planner now live in src/lib/algorithms/recursion.js (was app/recursion-tree/fib.jsx), alongside the other action-log planners. Also deletes the unused legacy app/recursion-tree/bst.js.
1 parent c238b0b commit 8c5f8c5

3 files changed

Lines changed: 1 addition & 26 deletions

File tree

src/app/recursion-tree/bst.js

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/app/recursion-tree/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { useState } from 'react';
44
import Navbar from '@/components/navbar';
5-
import { getTree, recursionActions } from './fib';
5+
import { getTree, recursionActions } from '@/lib/algorithms/recursion';
66
import { buchheimLayout } from '@/components/tree/layout';
77
import { useTreeEditor } from '@/components/tree/use-tree-editor';
88
import TreeCanvas from '@/components/tree/tree-canvas';

0 commit comments

Comments
 (0)