Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

AlexRo6afFSoft/ATDC-Sort

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AT-DC Sort Values

  1. Speed: O (N ∙ log₂ (N)² ∙ X) where N is number of elements for sorting and X is comparing speed
  2. Memory: O (2 ∙ N) where N is number of elements for sorting

##TODO:

  1. Write C Implementation
  2. Write Java Implamentation
  3. Fix JavaScript Implementation
  4. Write Python Implementation