feat: prims algorithm

This commit is contained in:
mpaulson 2022-06-26 08:09:22 -06:00
parent 66e1e54c52
commit 8b5cbd2e91
19 changed files with 160 additions and 62 deletions

View file

@ -1,10 +1,7 @@
import LinkedList from "@code/DoublyLinkedList";
import { test_list } from "./ListTest";
test("DoublyLinkedList", function() {
test("DoublyLinkedList", function () {
const list = new LinkedList<number>(3);
test_list(list);
});