|
1 |
| -# Алгоритмы в JavaScript |
| 1 | +# Алгоритмы в JavaScript / Algorithms In JavaScript |
2 | 2 |
|
3 |
| -### Коллекция алгоритмов и структур данных на JavaScript |
| 3 | +### Коллекция алгоритмов и структур данных на JavaScript / Collection of computer science algorithms and data structures written in JavaScript |
4 | 4 |
|
5 |
| -## Сортировки |
6 |
| -1. [Сортировка пузырьком](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/sorts/bubble-sort.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%80%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0_%D0%BF%D1%83%D0%B7%D1%8B%D1%80%D1%8C%D0%BA%D0%BE%D0%BC) |
7 |
| -2. [Сортировка выбором](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/sorts/selection-sort.js) | [Инфо](https://neerc.ifmo.ru/wiki/index.php?title=%D0%A1%D0%BE%D1%80%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0_%D0%B2%D1%8B%D0%B1%D0%BE%D1%80%D0%BE%D0%BC) |
8 |
| -3. [Сортировка подсчётом](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/sorts/counting-sort.js) | [Инфо](https://www.youtube.com/watch?v=6dk_csyWif0) |
| 5 | +## Сортировки / Sorting |
| 6 | +1. [Сортировка пузырьком / Bubble Sort](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/sorts/bubble-sort/bubble-sort.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%80%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0_%D0%BF%D1%83%D0%B7%D1%8B%D1%80%D1%8C%D0%BA%D0%BE%D0%BC) |
| 7 | +2. [Сортировка выбором / Selection Sort](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/sorts/selection-sort/selection-sort.js) | [Инфо](https://neerc.ifmo.ru/wiki/index.php?title=%D0%A1%D0%BE%D1%80%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0_%D0%B2%D1%8B%D0%B1%D0%BE%D1%80%D0%BE%D0%BC) |
| 8 | +3. [Сортировка подсчётом / Counting Sort](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/sorts/counting-sort/counting-sort.js) | [Инфо](https://www.youtube.com/watch?v=6dk_csyWif0) |
| 9 | +3. [Сортировка чёт-нечет / OddEven Sort](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/sorts/odd-even-sort/odd-even-sort.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%80%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%BA%D0%B0_%D1%87%D1%91%D1%82-%D0%BD%D0%B5%D1%87%D0%B5%D1%82) |
9 | 10 |
|
10 |
| -## Структуры данных |
11 |
| -1. [Стек](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/structures/stack.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%A1%D1%82%D0%B5%D0%BA) |
12 |
| -2. [Очередь](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/structures/queue.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%9E%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D1%8C_(%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5)) |
13 |
| -2. [Односвязный линейный список](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/structures/singly-list.js) | [Инфо](https://tproger.ru/translations/linked-list-for-beginners/) |
| 11 | +## Структуры данных / Data Structures |
| 12 | +1. [Стек / Stack](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/structures/stack.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%A1%D1%82%D0%B5%D0%BA) |
| 13 | +2. [Очередь / Queue](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/structures/queue.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%9E%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D1%8C_(%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5)) |
| 14 | +2. [Односвязный линейный список / Singly linked List](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/structures/singly-list.js) | [Инфо](https://tproger.ru/translations/linked-list-for-beginners/) |
| 15 | + |
| 16 | +## Деревья / Tree |
| 17 | +1. [Двоичное дерево поиска / Binary Search Tree](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/trees/binary-tree.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%94%D0%B2%D0%BE%D0%B8%D1%87%D0%BD%D0%BE%D0%B5_%D0%B4%D0%B5%D1%80%D0%B5%D0%B2%D0%BE_%D0%BF%D0%BE%D0%B8%D1%81%D0%BA%D0%B0) |
| 18 | + |
| 19 | +## Поиск / Search |
| 20 | +1. [Линейный поиск / Linear Search](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/search/linear-search.js) | [Инфо](https://www.tutorialspoint.com/data_structures_algorithms/linear_search_algorithm.htm) |
| 21 | +2. [Двоичный поиск / Binary Search](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/search/binary-search.js) | [Инфо](https://prog-cpp.ru/search-binary/) |
| 22 | + |
| 23 | + |
| 24 | +## Хеширование / Hashing |
| 25 | +1. [Хеш-таблица / Hash-Table](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/hash-table/hash-table.js) | [Инфо](https://bitsofmind.wordpress.com/2008/07/28/introduction_in_hash_tables/) |
| 26 | + |
| 27 | +## Другое / Other |
| 28 | +1. [Решето Эратосфена / Sieve Of Eratosthenes](https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/other/sieve-of-eratosthenes.js) | [Инфо](https://ru.wikipedia.org/wiki/%D0%A0%D0%B5%D1%88%D0%B5%D1%82%D0%BE_%D0%AD%D1%80%D0%B0%D1%82%D0%BE%D1%81%D1%84%D0%B5%D0%BD%D0%B0) |
0 commit comments