-
Bubble Sort
- Repeatedly swapping the adjacent element if they are in wrong order
-
Insertion Sort
-
Selection Sort
-
Merge Sort
-
Heapsort
-
Quicksort
-
Factorial
- the product of an integer and all the integers below it; e.g. factorial four ( 4! ) is equal to 24
-
Fibonacci Sequence
- 0,1,1,2,3,5,...
-
String Reverse
- String is immutable when we change its value it create new instance again it is ineficient way like this image.
- But String Builder (is one of API in java) is mutable.