/java-basics

Java Basics and Algorithms. Check README.md for more information

Primary LanguageJava

java-basics & Algorithms

  1. Bubble Sort

    • Repeatedly swapping the adjacent element if they are in wrong order
  2. Insertion Sort

  3. Selection Sort

  4. Merge Sort

  5. Heapsort

  6. Quicksort

  7. Factorial

    • the product of an integer and all the integers below it; e.g. factorial four ( 4! ) is equal to 24
  8. Fibonacci Sequence

    • 0,1,1,2,3,5,...
  9. 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.