README.md 11.7 KB
Newer Older
1
# The Algorithms - Java
A
Anup Kumar Panwar 已提交
2
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/TheAlgorithms/100)
A
Anup Kumar Panwar 已提交
3

已提交
4

5
NOTE: A [Development](https://github.com/TheAlgorithms/Java/tree/Development) branch is made for this repo where we are trying to migrate the existing project to a Java project structure. You can switch to [Development](https://github.com/TheAlgorithms/Java/tree/Development) branch for contributions. Please refer [this issue](https://github.com/TheAlgorithms/Java/issues/474) for more info.
V
Varun Upadhyay 已提交
6

N
nisarhassan12 已提交
7
You can play around (run and edit) the Algorithms or contribute to them using Gitpod.io a free online dev environment with a single click. No need to worry about the Dev enviroment.
8 9 10 11

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/TheAlgorithms/Java)


已提交
12 13 14 15 16 17 18 19 20 21 22 23 24
### All algorithms implemented in Java (for education)

These are for demonstration purposes only. There are many implementations of sorts in the Java standard library that are much better for performance reasons.

## Sort Algorithms


### Bubble
![alt text][bubble-image]

From [Wikipedia][bubble-wiki]: Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted.

__Properties__
R
Rajat Kumar Gupta 已提交
25 26 27
* Worst case performance    O(n^2)
* Best case performance    O(n)
* Average case performance    O(n^2)
已提交
28

29
##### View the algorithm in [action][bubble-toptal]
已提交
30 31 32 33 34 35



### Insertion
![alt text][insertion-image]

36
From [Wikipedia][insertion-wiki]: Insertion sort is a simple sorting algorithm that builds the final sorted array (or list) one item at a time. It is much less efficient on large lists than more advanced algorithms such as quicksort, heapsort, or merge sort.
Y
y2kbcm1 已提交
37
In the figure, each bar represents an element of an array that needs to be sorted. What happens at the first intersection of the top most and second top most bars is to swap these elements, represented by bars, because the second element has a higher precedence than the first element does. By repeating this method, insertion sort completes sorting.
已提交
38 39

__Properties__
R
Rajat Kumar Gupta 已提交
40 41 42
* Worst case performance    O(n^2)
* Best case performance    O(n)
* Average case performance    O(n^2)
已提交
43

44
##### View the algorithm in [action][insertion-toptal]
已提交
45 46 47 48 49


### Merge
![alt text][merge-image]

R
Rajat Kumar Gupta 已提交
50
From [Wikipedia][merge-wiki]: In computer science, merge sort (also commonly spelt mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most implementations produce a stable sort, which means that the implementation preserves the input order of equal elements in the sorted output. Mergesort is a divide and conquer algorithm that was invented by John von Neumann in 1945.
已提交
51 52

__Properties__
C
Christian Bender 已提交
53 54 55
* Worst case performance    O(n log n) (typical)
* Best case performance    O(n log n)
* Average case performance    O(n log n)
已提交
56 57


58
##### View the algorithm in [action][merge-toptal]
已提交
59

60 61
### Quick
![alt text][quick-image]
已提交
62

63 64 65
From [Wikipedia][quick-wiki]: Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order.

__Properties__
R
Rajat Kumar Gupta 已提交
66 67
* Worst case performance    O(n^2)
* Best case performance    O(n log n) or O(n) with three-way partition
H
Hector S 已提交
68
* Average case performance    O(n log n)
69

70
##### View the algorithm in [action][quick-toptal]
已提交
71 72 73 74 75 76 77

### Selection
![alt text][selection-image]

From [Wikipedia][selection-wiki]: The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and the sublist of items remaining to be sorted that occupy the rest of the list. Initially, the sorted sublist is empty and the unsorted sublist is the entire input list. The algorithm proceeds by finding the smallest (or largest, depending on sorting order) element in the unsorted sublist, exchanging (swapping) it with the leftmost unsorted element (putting it in sorted order), and moving the sublist boundaries one element to the right.

__Properties__
R
Rajat Kumar Gupta 已提交
78 79 80
* Worst case performance    O(n^2)
* Best case performance    O(n^2)
* Average case performance    O(n^2)
已提交
81

82
##### View the algorithm in [action][selection-toptal]
已提交
83

M
Mansour 已提交
84 85
### Shell
![alt text][shell-image]
已提交
86

M
Mansour 已提交
87 88 89 90 91 92 93
From [Wikipedia][shell-wiki]:  Shellsort is a generalization of insertion sort that allows the exchange of items that are far apart.  The idea is to arrange the list of elements so that, starting anywhere, considering every nth element gives a sorted list.  Such a list is said to be h-sorted.  Equivalently, it can be thought of as h interleaved lists, each individually sorted.

__Properties__
* Worst case performance O(nlog2 2n)
* Best case performance O(n log n)
* Average case performance depends on gap sequence

94
##### View the algorithm in [action][shell-toptal]
已提交
95

S
SunggyuLee 已提交
96
### Time-Complexity Graphs
97 98 99 100 101 102 103 104 105 106 107 108 109

Comparing the complexity of sorting algorithms (Bubble Sort, Insertion Sort, Selection Sort)

[Complexity Graphs](https://github.com/prateekiiest/Python/blob/master/sorts/sortinggraphs.png)

----------------------------------------------------------------------------------

## Search Algorithms

### Linear
![alt text][linear-image]

From [Wikipedia][linear-wiki]: linear search or sequential search is a method for finding a target value within a list. It sequentially checks each element of the list for the target value until a match is found or until all the elements have been searched.
R
Rajat Kumar Gupta 已提交
110
  The linear search runs in at the worst linear time and makes at most n comparisons, where n is the length of the list.
111 112

__Properties__
R
Rajat Kumar Gupta 已提交
113 114 115 116
* Worst case performance    O(n)
* Best case performance    O(1)
* Average case performance    O(n)
* Worst case space complexity    O(1) iterative
117

118 119
##### View the algorithm in [action][linear-tutorialspoint]

120 121 122 123 124 125
### Binary
![alt text][binary-image]

From [Wikipedia][binary-wiki]: Binary search, also known as half-interval search or logarithmic search, is a search algorithm that finds the position of a target value within a sorted array. It compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful.

__Properties__
R
Rajat Kumar Gupta 已提交
126 127 128
* Worst case performance    O(log n)
* Best case performance    O(1)
* Average case performance    O(log n)
129
* Worst case space complexity    O(1)
已提交
130

131
##### View the algorithm in [action][binary-tutorialspoint]
已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158

[bubble-toptal]: https://www.toptal.com/developers/sorting-algorithms/bubble-sort
[bubble-wiki]: https://en.wikipedia.org/wiki/Bubble_sort
[bubble-image]: https://upload.wikimedia.org/wikipedia/commons/thumb/8/83/Bubblesort-edited-color.svg/220px-Bubblesort-edited-color.svg.png "Bubble Sort"

[insertion-toptal]: https://www.toptal.com/developers/sorting-algorithms/insertion-sort
[insertion-wiki]: https://en.wikipedia.org/wiki/Insertion_sort
[insertion-image]: https://upload.wikimedia.org/wikipedia/commons/7/7e/Insertionsort-edited.png "Insertion Sort"

[quick-toptal]: https://www.toptal.com/developers/sorting-algorithms/quick-sort
[quick-wiki]: https://en.wikipedia.org/wiki/Quicksort
[quick-image]: https://upload.wikimedia.org/wikipedia/commons/6/6a/Sorting_quicksort_anim.gif "Quick Sort"

[merge-toptal]: https://www.toptal.com/developers/sorting-algorithms/merge-sort
[merge-wiki]: https://en.wikipedia.org/wiki/Merge_sort
[merge-image]: https://upload.wikimedia.org/wikipedia/commons/c/cc/Merge-sort-example-300px.gif "Merge Sort"

[selection-toptal]: https://www.toptal.com/developers/sorting-algorithms/selection-sort
[selection-wiki]: https://en.wikipedia.org/wiki/Selection_sort
[selection-image]: https://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Selection_sort_animation.gif/250px-Selection_sort_animation.gif "Selection Sort Sort"

[shell-toptal]: https://www.toptal.com/developers/sorting-algorithms/shell-sort
[shell-wiki]: https://en.wikipedia.org/wiki/Shellsort
[shell-image]: https://upload.wikimedia.org/wikipedia/commons/d/d8/Sorting_shellsort_anim.gif "Shell Sort"

[linear-wiki]: https://en.wikipedia.org/wiki/Linear_search
[linear-image]: http://www.tutorialspoint.com/data_structures_algorithms/images/linear_search.gif
159
[linear-tutorialspoint]: https://www.tutorialspoint.com/data_structures_algorithms/linear_search_algorithm.htm
已提交
160 161 162

[binary-wiki]: https://en.wikipedia.org/wiki/Binary_search_algorithm
[binary-image]: https://upload.wikimedia.org/wikipedia/commons/f/f7/Binary_search_into_array.png
163
[binary-tutorialspoint]: https://www.tutorialspoint.com/data_structures_algorithms/binary_search_algorithm.htm
已提交
164 165


P
Prasoon 已提交
166 167 168
--------------------------------------------------------------------
## Links to the rest of the algorithms

P
Prasoon 已提交
169 170
Conversions          |                                          Dynamic Programming   |Ciphers|Miscellaneous|
-----------          |----------------------------------------------------------------|-------|-------------|
171 172
[Any Base to Any Base](Conversions/AnyBaseToAnyBase.java)| [Coin Change](DynamicProgramming/CoinChange.java)|[Caesar](ciphers/Caesar.java)|[Heap Sort](Misc/heap_sort.java)|
[Any Base to Decimal](Conversions/AnyBaseToDecimal.java)|[Egg Dropping](DynamicProgramming/EggDropping.java)|[Columnar Transposition Cipher](ciphers/ColumnarTranspositionCipher.java)|[Palindromic Prime Checker](Misc/PalindromePrime.java)|
173 174 175 176 177 178
[Binary to Decimal](Conversions/BinaryToDecimal.java)|[Fibonacci](DynamicProgramming/Fibonacci.java)|[RSA](ciphers/RSA.java)|More soon...|
[Binary to HexaDecimal](Conversions/BinaryToHexadecimal.java)|[Kadane Algorithm](DynamicProgramming/KadaneAlgorithm.java)|more coming soon...|
[Binary to Octal](Conversions/BinaryToOctal.java)|[Knapsack](DynamicProgramming/Knapsack.java)|
[Decimal To Any Base](Conversions/DecimalToAnyBase.java)|[Longest Common Subsequence](DynamicProgramming/LongestCommonSubsequence.java)|
[Decimal To Binary](Conversions/DecimalToBinary.java)|[Longest Increasing Subsequence](DynamicProgramming/LongestIncreasingSubsequence.java)|
[Decimal To Hexadecimal](Conversions/DecimalToHexaDecimal.java)|[Rod Cutting](DynamicProgramming/RodCutting.java)|
P
Prasoon 已提交
179 180
and much more...|                                                    and more...|

P
Prasoon 已提交
181 182 183
### Data Structures
Graphs|Heaps|Lists|Queues|
------|-----|-----|------|
M
Mojtaba Rahimy 已提交
184 185 186
[BFS](DataStructures/Graphs/BFS.java)|[Empty Heap Exception](DataStructures/Heaps/EmptyHeapException.java)|[Circle Linked List](DataStructures/Lists/CircleLinkedList.java)|[Generic Array List Queue](DataStructures/Queues/GenericArrayListQueue.java)|
[DFS](DataStructures/Graphs/DFS.java)|[Heap](DataStructures/Heaps/Heap.java)|[Doubly Linked List](DataStructures/Lists/DoublyLinkedList.java)|[Queues](DataStructures/Queues/Queues.java)|
[Graphs](DataStructures/Graphs/Graphs.java)|[Heap Element](DataStructures/Heaps/HeapElement.java)|[Singly Linked List](DataStructures/Lists/SinglyLinkedList.java)|
B
Bartosz Dąbek 已提交
187
[Kruskals Algorithm](DataStructures/Graphs/KruskalsAlgorithm.java)|[Max Heap](DataStructures/Heaps/MaxHeap.java)|
S
saeed jinat 已提交
188
[CursorLinkedList](DataStructures/Lists/CursorLinkedList.java)|
M
Mojtaba Rahimy 已提交
189 190
[Matrix Graphs](DataStructures/Graphs/MatrixGraphs.java)|[Min Heap](DataStructures/Heaps/MinHeap.java)|
[PrimMST](DataStructures/Graphs/PrimMST.java)|
P
Prasoon 已提交
191 192 193

Stacks|Trees|
------|-----|
M
Mojtaba Rahimy 已提交
194 195
[Node Stack](DataStructures/Stacks/NodeStack.java)|[AVL Tree](DataStructures/Trees/AVLTree.java)|
[Stack of Linked List](DataStructures/Stacks/StackOfLinkedList.java)|[Binary Tree](DataStructures/Trees/BinaryTree.java)|
196 197
[Array Stack](DataStructures/Stacks/StackArray.java)|And much more...|
[ArrayList Stack](DataStructures/Stacks/StackArrayList.java)||
M
Mojtaba Rahimy 已提交
198 199 200

* [Bags](DataStructures/Bags/Bag.java)
* [Buffer](DataStructures/Buffers/CircularBuffer.java)
M
Mihir Hindocha 已提交
201
* [HashMap](DataStructures/HashMap/Hashing/HashMap.java)
M
Mojtaba Rahimy 已提交
202
* [Matrix](DataStructures/Matrix/Matrix.java)