algorithms icon indicating copy to clipboard operation
algorithms copied to clipboard

A open source repository of different kinds of algorithms in c. Newbies are encouraged to contribute! Note: I made this code when i didn't have as much experience in programming

Results 6 algorithms issues
Sort by recently updated
recently updated
newest added

I rewrote the even or odd file replacing the if/else statement with a ternary operator and using the bitwise and operator over the more conventional and conditional operator. By doing...

See title. Created a C function to find the median value of two lists provided the lists and their lengths.

Added algorithm to check whether number is prime or not.

this program: 1. counts the number of nodes in a liknedlist 2. adds new node at the end of the list 3.adds another new node at the beginning of the...

I think that adding a bogo sort algorithm wouldn't harm, even though bogo isn't ideal to use. I propose that it is useful, just for reference. Of course any change...