File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 6
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
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
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
+ 4 . [ Сортировка чёт-нечет / 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 )
10
10
11
11
## Структуры данных / Data Structures
12
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
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/ )
14
+ 3 . [ Односвязный линейный список / 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
+ 4 . [ Двусвязный линейный список / Doubly linked List] ( https://github.com/dmitrymorozoff/algorithms-in-javascript/blob/master/source/structures/doubly-list.js ) | [ Инфо] ( https://prog-cpp.ru/data-dls/ )
15
16
16
17
## Деревья / Tree
17
18
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 )
Original file line number Diff line number Diff line change 16
16
< script src ="./source/structures/stack.js " type ="module "> </ script >
17
17
< script src ="./source/structures/queue.js " type ="module "> </ script >
18
18
< script src ="./source/structures/singly-list.js " type ="module "> </ script >
19
- < < < < < < < HEAD
20
- < script src ="./source/structures/doubly-list.js " type ="module "> </ script >
21
- =======
22
19
< script src ="./source/trees/binary-tree.js " type ="module "> </ script >
23
20
< script src ="./source/search/linear-search/linear-search.js " type ="module "> </ script >
24
21
< script src ="./source/search/binary-search/binary-search.js " type ="module "> </ script >
25
22
< script src ="./source/hash-table/hash-table.js " type ="module "> </ script >
26
23
< script src ="./source/other/sieve-of-eratosthenes.js " type ="module "> </ script >
27
- > > > > > > > d9bd2c0c8c2469ff4ac97a73d47a5d6d08f53861
28
24
< script src ="./source/main.js " type ="module "> </ script >
29
25
</ body >
30
26
You can’t perform that action at this time.
0 commit comments