The-Last-Algorithms-Course-.../scripts/dsa.js
2022-06-23 10:33:58 -06:00

32 lines
528 B
JavaScript

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",
},
};