module.exports = { ArrayList: { type: "class", }, SinglyLinkedList: { type: "class", }, DoublyLinkedList: { type: "class", }, Queue: { type: "class", }, Stack: { type: "class", }, InsertionSort: { type: "fn", fn: "insertion_sort", args: "arr: number[]", "return": "void", }, MergeSort: { type: "fn", fn: "merge_sort", args: "arr: number[]", "return": "void", }, QuickSort: { type: "fn", fn: "quick_sort", args: "arr: number[]", "return": "void", }, DijkstraList: { type: "fn", fn: "dijkstra_list", args: "source: number, sink: number, arr: WeightedAdjacencyList", "return": "number[]", }, };