this python module takes an input of list of numbers and returns the median without using any sorting method and is quicker than those methods.time complexity is O(k log(n)). Run It Now!
this program takes input of list of numbers and gives the output of top k (e.g. top 20)
selections out of the enterd number.It returns top k elements but not in order. Run It Now!
This python module finds Eulerian tour in a graph which is entered in a format of list having tupple of 2 elements.This basic concept is used in algoithms of social networking.In eulerian tour, all no Run It Now!
Enter first value then second value and it will compute the GCF.
Made a few changes: see code comments. Old version would have failed on GCD(24,36) for example.
This python module finds the median of the numbers enterd in a list with a time complexity of O(nlog(n)), without modifying the list
It is way faster than the simple method of first sorting and then Run It Now!