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

Latest commit

 

History

History

design-and-analysis-of-algorithms

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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)