Skip to content

Commit 05d6041

Browse files
author
hojas
committed
update
1 parent 96e011f commit 05d6041

29 files changed

+3282
-2658
lines changed

README.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@
22

33
## Data Structures
44

5-
- [Linked List](https://github.com/hojas/typescript-algorithms/tree/main/src/data-structures/linked-list)
6-
- [Doubly Linked List](https://github.com/hojas/typescript-algorithms/tree/main/src/data-structures/doubly-linked-list)
7-
- [Stack](https://github.com/hojas/typescript-algorithms/tree/main/src/data-structures/stack)
8-
- [Queue](https://github.com/hojas/typescript-algorithms/tree/main/src/data-structures/queue)
9-
- [Tree](https://github.com/hojas/typescript-algorithms/tree/main/src/data-structures/tree)
5+
- [Linked List](https://github.com/hojas/typescript-algorithms/tree/main/src/1-data-structures/1-linked-list)
6+
- [Stack](https://github.com/hojas/typescript-algorithms/tree/main/src/1-data-structures/2-stack)
7+
- [Queue](https://github.com/hojas/typescript-algorithms/tree/main/src/1-data-structures/3-queue)
8+
- [Tree](https://github.com/hojas/typescript-algorithms/tree/main/src/1-data-structures/4-tree)
109

1110
## Algorithms
11+
12+
### Sort
13+
14+
1. [Bubble Sort](https://github.com/hojas/typescript-algorithms/tree/main/src/2-algorithms/1-sort/1-bubble-sort)
15+
2. [Selection Sort](https://github.com/hojas/typescript-algorithms/tree/main/src/2-algorithms/1-sort/2-selection-sort)
16+
3. [Insertion Sort](https://github.com/hojas/typescript-algorithms/tree/main/src/2-algorithms/1-sort/3-insertion-sort)
17+
18+
### Search
19+
20+
1. [Binary Search](https://github.com/hojas/typescript-algorithms/tree/main/src/2-algorithms/2-search/1-binary-search)

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
"type": "module",
44
"version": "1.0.0",
55
"private": true,
6-
"packageManager": "pnpm@8.15.0",
6+
"packageManager": "pnpm@9.3.0",
77
"license": "MIT",
88
"scripts": {
99
"lint": "eslint .",
1010
"test": "vitest"
1111
},
1212
"devDependencies": {
13-
"@antfu/eslint-config": "^2.6.4",
14-
"eslint": "^8.56.0",
15-
"typescript": "^5.3.3",
16-
"vite": "^5.1.4",
17-
"vitest": "^1.3.1"
13+
"@antfu/eslint-config": "^2.21.1",
14+
"eslint": "^9.5.0",
15+
"typescript": "^5.4.5",
16+
"vite": "^5.3.1",
17+
"vitest": "^1.6.0"
1818
}
1919
}

0 commit comments

Comments
 (0)