diff --git a/README.md b/README.md index f8af2ee48..1d8d3386e 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,14 @@ __Properties__ ###### View the algorithm in [action][shell-toptal] +###Time-Compexity Graphs + +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 @@ -108,6 +116,8 @@ __Properties__ * Average case performance O(log n) * Worst case space complexity O(1) +---------------------------------------------------------------------------------------------------------------------- + ## Ciphers ### Caesar diff --git a/sorts/sortinggraphs.png b/sorts/sortinggraphs.png new file mode 100644 index 000000000..628245f3e Binary files /dev/null and b/sorts/sortinggraphs.png differ