Skip to content

developeramarish/algorithms-dotnet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Algorithms .NET

This repository can help you to prepare yourself for the algorithm questions on .net platform. It includes main sorting algorithms, Fibonacci numbers algorithms and others. Plus it is also covered with tests for better understanding.

Contents


This solution contains the following algorithms:

Sorting

Algorithm Time Complexity (Average) Space Complexity (Worst)
Bubble Sort Θ(n^2) O(1)
Insertion Sort Θ(n^2) O(1)
Heapsort Θ(n log(n)) O(1)
Merge Sort Θ(n log(n)) O(n)
Quicksort Θ(n log(n)) Θ(n log(n))

Common Algorithms

Algorithm Time Complexity (Average) Space Complexity (Worst)
Fibonacci Numbers Iterative Θ(n) O(1)
Fibonacci Numbers Recursive Θ(φ^n) O(1)
Reverse Array Θ(n) O(1)

Technologies


This solution uses the following technologies:

About

Collection of main sorting and other common algorithms using .NET

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%