Skip to content
This repository has been archived by the owner on Jun 12, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (16 loc) · 412 Bytes

File metadata and controls

21 lines (16 loc) · 412 Bytes

Design & Analysis of Algorithms (IT651)

Analysis of some common algorithms written in C, best fit Bezier curve plotted using GNUPlot.

Assignment 1: Search

  • Sequential Search
  • Sequential Search (improved)
  • Binary Search
  • Fibonacci Search

Assignment 2: Sort

  • Selection Sort
  • Insertion Sort
  • Bubble Sort
  • Bubble Sort (improved)
  • Merge Sort
  • Heap Sort
  • Quick Sort
  • Quick Sort (random pivot)