fixing names
This commit is contained in:
parent
90fdc7aa06
commit
17b5708d59
12 changed files with 10 additions and 22 deletions
|
|
@ -2,40 +2,28 @@
|
|||
module.exports = {
|
||||
ArrayList: {
|
||||
type: "class",
|
||||
name: "array-list.ts",
|
||||
className: "ArrayList",
|
||||
},
|
||||
SinglyLinkedList: {
|
||||
type: "class",
|
||||
name: "single-linked-list.ts",
|
||||
className: "LinkedList",
|
||||
},
|
||||
DoublyLinkedList: {
|
||||
type: "class",
|
||||
name: "doubly-linked-list.ts",
|
||||
className: "LinkedList",
|
||||
},
|
||||
Queue: {
|
||||
type: "class",
|
||||
name: "queue",
|
||||
className: "Queue",
|
||||
},
|
||||
|
||||
Stack: {
|
||||
type: "class",
|
||||
name: "stack",
|
||||
className: "Stack",
|
||||
},
|
||||
|
||||
InsertionSort: {
|
||||
type: "fn",
|
||||
name: "insertion-sort.ts",
|
||||
fn: "insertion_sort",
|
||||
args: "arr: number[]",
|
||||
"return": "void",
|
||||
},
|
||||
MergeSort: {
|
||||
type: "fn",
|
||||
name: "merge-sort.ts",
|
||||
fn: "merge_sort",
|
||||
args: "arr: number[]",
|
||||
"return": "void",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue