Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9743ed7

Browse files
Merge branch 'master' of github.com:dreddsa5dies/algorithm
2 parents 8ac2c1a + 68e310f commit 9743ed7

27 files changed

+23
-3521
lines changed

‎README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
[![Go Report Card](https://goreportcard.com/badge/github.com/dreddsa5dies/algorithm)](https://goreportcard.com/report/github.com/dreddsa5dies/algorithm) ![License](https://img.shields.io/badge/License-MIT-blue.svg)
22

3-
[![Buy Me A Coffee](https://www.buymeacoffee.com/assets/img/custom_images/black_img.png)](https://www.buymeacoffee.com/GDNsM0F)
4-
53
## The repository algorithms implemented on the Go:
64
### Sort:
7-
* Sort by simple exchange, bubble sort (Сортировка простыми обменами, сортиро́вка пузырько́м): [example](https://github.com/dreddsa5dies/algorithm/tree/master/bubbleSort)
8-
* Cocktail sort (Сортировка перемешиванием, или Шейкерная сортировка, или двунаправленная): [example](https://github.com/dreddsa5dies/algorithm/tree/master/bubleSortV2)
9-
* Shell Sort (Сортировка Шелла): [example](https://github.com/dreddsa5dies/algorithm/tree/master/shellSort)
10-
* Insertion sort (Сортировка вставками): [example](https://github.com/dreddsa5dies/algorithm/tree/master/insertionSort)
11-
* Fast sorting, sorting Hoare (Quicksort) (Быстрая сортировка, сортировка Хоара): [example](https://github.com/dreddsa5dies/algorithm/tree/master/quickSort)
12-
* Selection sort (Сортировка выбором): [example](https://github.com/dreddsa5dies/algorithm/tree/master/selectionSort)
13-
* Heap sort (Пирамидальная сортировка, «Сортировка кучей»): [example](https://github.com/dreddsa5dies/algorithm/tree/master/heapSort)
14-
* Merge sort (Сортировка слиянием): [example](https://github.com/dreddsa5dies/algorithm/tree/master/mergeSort)
15-
* Radix sort (Поразрядная сортировка): [example](https://github.com/dreddsa5dies/algorithm/tree/master/radixSort)
16-
* Counting sort (Сортировка подсчётом): [example](https://github.com/dreddsa5dies/algorithm/tree/master/countingSort)
5+
* [Sort by simple exchange, bubble sort (Сортировка простыми обменами, сортиро́вка пузырько́м)](https://github.com/dreddsa5dies/algorithm/tree/master/bubbleSort)
6+
* [Cocktail sort (Сортировка перемешиванием, или Шейкерная сортировка, или двунаправленная)](https://github.com/dreddsa5dies/algorithm/tree/master/bubleSortV2)
7+
* [Shell Sort (Сортировка Шелла)](https://github.com/dreddsa5dies/algorithm/tree/master/shellSort)
8+
* [Insertion sort (Сортировка вставками)](https://github.com/dreddsa5dies/algorithm/tree/master/insertionSort)
9+
* [Fast sorting, sorting Hoare (Quicksort) (Быстрая сортировка, сортировка Хоара)](https://github.com/dreddsa5dies/algorithm/tree/master/quickSort)
10+
* [Selection sort (Сортировка выбором)](https://github.com/dreddsa5dies/algorithm/tree/master/selectionSort)
11+
* [Heap sort (Пирамидальная сортировка, «Сортировка кучей»)](https://github.com/dreddsa5dies/algorithm/tree/master/heapSort)
12+
* [Merge sort (Сортировка слиянием)](https://github.com/dreddsa5dies/algorithm/tree/master/mergeSort)
13+
* [Radix sort (Поразрядная сортировка)](https://github.com/dreddsa5dies/algorithm/tree/master/radixSort)
14+
* [Counting sort (Сортировка подсчётом)](https://github.com/dreddsa5dies/algorithm/tree/master/countingSort)
1715
### Search:
18-
* Binary search (Бинарный поиск): [example](https://github.com/dreddsa5dies/algorithm/tree/master/binarySearch)
19-
* Breadth-first search, BFS (Поиск в ширину (англ. breadth-first search, BFS) — метод обхода графа и поиска пути в графе): [example](https://github.com/dreddsa5dies/algorithm/tree/master/BFS)
20-
* Linear search (Линейный, последовательный поиск): [example](https://github.com/dreddsa5dies/algorithm/tree/master/linearSearch)
21-
* Interpolation search (Интерполяционный, интерполирующий поиск): : [example](https://github.com/dreddsa5dies/algorithm/tree/master/interpolationSearch)
16+
* [Binary search (Бинарный поиск)](https://github.com/dreddsa5dies/algorithm/tree/master/binarySearch)
17+
* [Breadth-first search, BFS (Поиск в ширину (англ. breadth-first search, BFS) — метод обхода графа и поиска пути в графе)](https://github.com/dreddsa5dies/algorithm/tree/master/BFS)
18+
* [Linear search (Линейный, последовательный поиск)](https://github.com/dreddsa5dies/algorithm/tree/master/linearSearch)
19+
* [Interpolation search (Интерполяционный, интерполирующий поиск)](https://github.com/dreddsa5dies/algorithm/tree/master/interpolationSearch)
2220

2321
### ADT:
24-
* Stack (абстрактный тип данных, представляющий собой список элементов, организованных по принципу LIFO): [example](https://github.com/dreddsa5dies/algorithm/tree/master/stack)
25-
* Queue (абстрактный тип данных, представляющий собой список элементов, организованных по принципу FIFO): [example](https://github.com/dreddsa5dies/algorithm/tree/master/queue)
26-
* binary search tree, BST (Двоичное дерево поиска): [example](https://github.com/dreddsa5dies/algorithm/tree/master/BST)
27-
* HEAP (Ку́ча - динамически распределяемая память приложения): [example](https://golang.org/pkg/container/heap/)
28-
* Doubly linked list (Двунаправленный список): [example](https://golang.org/pkg/container/list/)
29-
* Circular lists (Круговой связанный список): : [example](https://golang.org/pkg/container/ring/)
22+
* [Stack (абстрактный тип данных, представляющий собой список элементов, организованных по принципу LIFO)](https://github.com/dreddsa5dies/algorithm/tree/master/stack)
23+
* [Queue (абстрактный тип данных, представляющий собой список элементов, организованных по принципу FIFO)](https://github.com/dreddsa5dies/algorithm/tree/master/queue)
24+
* [Binary search tree, BST (Двоичное дерево поиска)](https://github.com/dreddsa5dies/algorithm/tree/master/BST)
25+
* [HEAP (Ку́ча - динамически распределяемая память приложения)](https://golang.org/pkg/container/heap/)
26+
* [Doubly linked list (Двунаправленный список)](https://golang.org/pkg/container/list/)
27+
* [Circular lists (Круговой связанный список)](https://golang.org/pkg/container/ring/)
3028

3129
## The code contains comments in Russian
3230

3331
## License
3432
This project is licensed under MIT license. Please read the [LICENSE](https://github.com/dreddsa5dies/algorithm/tree/master/LICENSE.md) file.
3533

3634
## Contribute
37-
Welcomes any kind of contribution. Please read the [CONTRIBUTING](https://github.com/dreddsa5dies/algorithm/tree/master/CONTRIBUTING.md), [ISSUE TEMPLATE](https://github.com/dreddsa5dies/algorithm/tree/master/ISSUE_TEMPLATE.md) and [CODE_OF_CONDUCT](https://github.com/dreddsa5dies/algorithm/tree/master/CODE_OF_CONDUCT.md) file.
35+
Welcomes any kind of contribution. Please read the [CONTRIBUTING](https://github.com/dreddsa5dies/algorithm/tree/master/CONTRIBUTING.md), [ISSUE TEMPLATE](https://github.com/dreddsa5dies/algorithm/tree/master/ISSUE_TEMPLATE.md) and [CODE_OF_CONDUCT](https://github.com/dreddsa5dies/algorithm/tree/master/CODE_OF_CONDUCT.md) file.
36+
37+
[![Anurag's github stats](https://github-readme-stats.vercel.app/api?username=dreddsa5dies)](https://github.com/anuraghazra/github-readme-stats)

‎assets/css/font-awesome.min.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

‎assets/css/ie8.css

Lines changed: 0 additions & 26 deletions
This file was deleted.

‎assets/css/ie9.css

Lines changed: 0 additions & 33 deletions
This file was deleted.

‎assets/css/images/bg.jpg

-232 KB
Binary file not shown.

‎assets/css/images/ie/footer.png

-424 Bytes
Binary file not shown.

‎assets/css/images/ie/footer.svg

Lines changed: 0 additions & 9 deletions
This file was deleted.

‎assets/css/images/overlay-pattern.png

-13.6 KB
Binary file not shown.

‎assets/css/images/overlay.svg

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /