Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.41 KB

File metadata and controls

32 lines (26 loc) · 1.41 KB

Searching And Sorting Algorithm

This repository contains sorting and searching algorithm implemented in Java.

How to run this code in IntelliJ

  1. Copy the clone link of this repository.
  2. In IntelliJ Idea, Select VCS Menu on the menubar and choose Get from VCS.
  3. Paste the copied link in the URL Field.
  4. Click Clone.

Output

Searching Algorithm

  1. Linear Search LS

  2. Binary Search with Recursion BS

  3. Binary Search using Iterative approach BS1

  4. Ternary Search TS

  5. Jump Search JS

  6. Exponential Search ES

Sorting Algorithm

  1. Bubble Sort BS
  2. Selection Sort SS