Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 465 Bytes

File metadata and controls

16 lines (13 loc) · 465 Bytes

Algorithm-Analyzer

Algorithm Analyzer in Java

A Java application that allows users to:

  • Choose between searching and sorting algorithms.
  • Input a list of numbers at runtime.
  • Measure execution time and analyze time complexity.

Algorithms Implemented

  • Searching: Linear Search, Binary Search
  • Sorting: Bubble Sort, Selection Sort, Insertion Sort, Merge Sort, Quick Sort

How to Run

javac AlgorithmAnalyzer.java
java AlgorithmAnalyzer