Skip to content

A console app demonstrating algorithms of all levels for strings, numbers, arrays, searches, time complexities, pyramids, and other. (more to come)

Notifications You must be signed in to change notification settings

rajeshwarn/CSharp_Algorithms

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CSharp_Algorithms

A console app demonstrating algorithms of all levels for strings, numbers, arrays, searches, pyramids, and more ...


Challenge Description Code
Vasya-Clerk -> Ticket Line Determine if the correct change can be given to a line of cinema goers Here

####Iterations

Challenge Description Code
BinaryGap Determine the longest sequence of zeros in a binary value Here

####Arrays

Challenge Description Code
CyclicRotation Rotate an array to the right by a given number of steps Here
OddOccurrencesInArray Find value that occurs in odd number of elements Here

####Time Complexity

Challenge Description Code
FrogJmp Count minimal number of jumps from position X to Y. Here
PermMissingElem Find the missing element in a given permutation Here
TapeEquilibrium Minimize the value (A[0] + ... + A[P-1]) - (A[P] + ... + A[N-1]) Here

Context No. Name Difficulty
389 Find The Difference Easy
390 Elimination Game Medium

###Math / Number Algorithms

Algorithm Comment
Fibonacci Uses ThreadPool, ManualResetEvent & recursion to calculate the fibonacci spiral of 10 numbers
Armstrong Demonstrate 2 ways to determine if a number is an armstrong number (number is equal to the power of all it's digits)
Factorial Shows 2 ways to calculate the factorial of a number using a while loop and recursion
Mean & Standard Deviation Uses PLINQ's Aggregate Function to calculate the mean and Standard deviation for a set of numbers
Is Prime Number Algorithm for checking prime numbers

###String Algorithms

Algorithm Comment
Dupes Finds and calculates the number of times a letter is duplicated in a string
Reverse Shows 3 ways to reverse a string using an array, a while loop and recursion
Sentence Permutations Shows an iterative approach to determining word permutations in a sentence

###Search Algorithms

Algorithm Comment
Binary Demonstrates the builtin c# feature and a custom divide and conquer method for performing a binary search
Linear Searches sorted and unsorted lists and outputs the number of lookups it took to complete the process

###Pyramid Algorithms #####No 1 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 6 6 6 6 6 6

#####No 2 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 1 2 3 4 5 6

#####No 3 * * * * * * * * * * * * * * * * * * * * *

#####No 4 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 4 5 4 3 2 1 1 2 3 4 5 6 5 4 3 2 1

#####No 5 1 2 3 4 5 6 5 4 3 2 1 1 2 3 4 5 4 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1

About

A console app demonstrating algorithms of all levels for strings, numbers, arrays, searches, time complexities, pyramids, and other. (more to come)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%