0
votes
What should students be taught first when first learning sorting algorithms?
IntroSort is a great algorithm to teach as well, once students have learned to understand Quick and Heap sort. IntroSort (short for Introspective sort) starts as a QuickSort and switches to a Heap …
0
votes
Should you use the private access modifier if it’s redundant?
Always use the explicit form. If for whatever reason the underlying assumption changes, the code with an explicit denotation of access won't break, whereas the implicit connotation my easily break …
0
votes
What are the most relevant OSS projects for .NET?
I'd add in the C5 Generic Collection Library. Whereas the .NET BCL generic collections contain interfaces, they aren't programmed to thei …
