Skip to content

digital080/algos

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Algorithms

A basic project to use some simple algorithms.

Linear Search

This algorithm runs in 𝛳 (𝑛) iterations in the worst case.

  • To compile use make
  • Run as ./search.out

Sorting

To do

  • Create file sort.cpp
  • Pick one to implement (They all use 𝛳 (𝑛²) iterations)
  • Compile with make sort
  • Run as ./sort.out

About

Some simple algorithms

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 76.4%
  • Makefile 23.6%