Skip to content

Commit 25e9630

Browse files
Sorting added
1 parent e7f40bd commit 25e9630

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,9 @@ If you are searching of one efficient fast algorithm then dynamic programming is
1919
### - Greedy algorithm
2020

2121
Greedy algorithm is a step based algorithm. In a greedy algorithm we analyze the problem in each step. Then use the best locally possible optimum solution to this particular step .Then the process repeats to all steps. It will lead to a globally optimal solution.
22+
23+
# Algorithms Covererd:
24+
25+
- [Bubble and Selection Sort](https://github.com/Saurabhdimri06/Algorithms-implementation-using-C/tree/master /Bubble%20and%20selection%20sort) Bubble and Selection both are sorting techniques. As we know in our daily lives how much important it is to have an efficent sorting technique to handel large amount of data so it becomes necessary to have a efficent sorting technique at hand.
26+
27+
Time Complexity of Bubble Sort - O(n) and that of Selection Sort is - O(n2)

0 commit comments

Comments
 (0)