Skip to content

Commit e89e029

Browse files
authored
update README style and fixed minor issues
1 parent f771b8b commit e89e029

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

README.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The Algorithms - Java
22

3-
## 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.
3+
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.
44

55
### All algorithms implemented in Java (for education)
66

@@ -19,7 +19,7 @@ __Properties__
1919
* Best case performance O(n)
2020
* Average case performance O(n^2)
2121

22-
###### View the algorithm in [action][bubble-toptal]
22+
##### View the algorithm in [action][bubble-toptal]
2323

2424

2525

@@ -34,7 +34,7 @@ __Properties__
3434
* Best case performance O(n)
3535
* Average case performance O(n^2)
3636

37-
###### View the algorithm in [action][insertion-toptal]
37+
##### View the algorithm in [action][insertion-toptal]
3838

3939

4040
### Merge
@@ -48,7 +48,7 @@ __Properties__
4848
* Average case performance O(n log n)
4949

5050

51-
###### View the algorithm in [action][merge-toptal]
51+
##### View the algorithm in [action][merge-toptal]
5252

5353
### Quick
5454
![alt text][quick-image]
@@ -60,7 +60,7 @@ __Properties__
6060
* Best case performance O(n log n) or O(n) with three-way partition
6161
* Average case performance O(n^2)
6262

63-
###### View the algorithm in [action][quick-toptal]
63+
##### View the algorithm in [action][quick-toptal]
6464

6565
### Selection
6666
![alt text][selection-image]
@@ -72,7 +72,7 @@ __Properties__
7272
* Best case performance O(n^2)
7373
* Average case performance O(n^2)
7474

75-
###### View the algorithm in [action][selection-toptal]
75+
##### View the algorithm in [action][selection-toptal]
7676

7777
### Shell
7878
![alt text][shell-image]
@@ -84,7 +84,7 @@ __Properties__
8484
* Best case performance O(n log n)
8585
* Average case performance depends on gap sequence
8686

87-
###### View the algorithm in [action][shell-toptal]
87+
##### View the algorithm in [action][shell-toptal]
8888

8989
### Time-Compexity Graphs
9090

@@ -119,14 +119,15 @@ __Properties__
119119
* Average case performance O(log n)
120120
* Worst case space complexity O(1)
121121

122+
### Shell
122123
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.
123124

124125
__Properties__
125126
* Worst case performance O(nlog2 2n)
126127
* Best case performance O(n log n)
127128
* Average case performance depends on gap sequence
128129

129-
###### View the algorithm in [action][shell-toptal]
130+
##### View the algorithm in [action][shell-toptal]
130131

131132
[bubble-toptal]: https://www.toptal.com/developers/sorting-algorithms/bubble-sort
132133
[bubble-wiki]: https://en.wikipedia.org/wiki/Bubble_sort

0 commit comments

Comments
 (0)