Skip to content

Commit 26673f1

Browse files
authored
Merge pull request TheAlgorithms#388 from ayush1208/patch-1
Update README.md
2 parents 758439c + ff38b4a commit 26673f1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ __Properties__
8787

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

90-
[Complexity Graphs](https://github.com/prateekiiest/Python/blob/master/sorts/sortinggraphs.png)
90+
![Complexity Graphs](https://github.com/prateekiiest/Python/blob/master/sorts/sortinggraphs.png)
91+
92+
Choosing of a sort technique-Quicksort is a very fast algorithm but can be pretty tricky to implement ,Bubble sort is a slow algorithm but is very easy to implement. To sort small sets of data, bubble sort may be a better option since it can be implemented quickly, but for larger datasets, the speedup from quicksort might be worth the trouble implementing the algorithm.
93+
94+
9195

9296
----------------------------------------------------------------------------------
9397

0 commit comments

Comments
 (0)