Sorting Algorithm Cheat Sheet
interviewcake.com
Sorting Algorithm Cheat Sheet
1–10 of 52 posts
Re: Sorting Algorithm Cheat Sheet
#2Re: Sorting Algorithm Cheat Sheet
#3Re: Sorting Algorithm Cheat Sheet
#4Original author here, happy to answer questions about data structures, algorithms, and coding interviews!
Re: Sorting Algorithm Cheat Sheet
#5The constant factor in radix sort isn't the number of bits, it's the number of digits. Since one typically sorts on a computer using 8-bit 'digits', that's a constant factor of 4 or 8 (not 32 or 64).
Re: Sorting Algorithm Cheat Sheet
#6It is just trivia and has little to no bearing on if the candidate can actually do the job (unless the job relates to the runtime of sorting algorithms, of course).
Re: Sorting Algorithm Cheat Sheet
#7Who is still asking candidates to talk about sorting algorithms? It is just trivia and has little to no bearing on if the candidate can actually do the job (unless the job relates to the runtime of sorting algorithms, of course).
Re: Sorting Algorithm Cheat Sheet
#8Original author here, happy to answer questions about data structures, algorithms, and coding interviews!
Re: Sorting Algorithm Cheat Sheet
#9I think it's important to mention that counting sort and radix sort are not "true" comparison-based sorts: they have additional requirements on the input data.
Re: Sorting Algorithm Cheat Sheet
#10Who is still asking candidates to talk about sorting algorithms? It is just trivia and has little to no bearing on if the candidate can actually do the job (unless the job relates to the runtime of sorting algorithms, of course).