Tuesday, October 1, 2019
Sunday, September 15, 2019
A Very Functional QuickSort
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static IEnumerable<T> QuickSort<T>(IEnumerable<T> A) | |
{ | |
int size = A.Count(); | |
var pivot = size > 1 ? A.ToList()[new Random().Next(0, size - 1)] : default(T); | |
return size > 1 | |
? QuickSort<T>(A.Where(x => Comparer<T>.Default.Compare(x, pivot) < 0)) | |
.Concat(A.Where(x => Comparer<T>.Default.Compare(x, pivot) == 0)) | |
.Concat(QuickSort<T>(A.Where(x => Comparer<T>.Default.Compare(x, pivot) > 0))) | |
: A; | |
} |
Subscribe to:
Posts (Atom)
Football Player Transfer Prediction
Football Player Transfer Prediction Using Different Classifiers Project Report : Football Player Transfer Prediction Report ...
-
This Project has been designed and developed for fulfillment of my 2nd year,1st semester Project Work. Video:
-
A 2D game on basic c and c++ for fulfillment of my 1st year,2nd semester Project Work. Screenshot: