Top 10 sorting algorithms commonly used in js implementation
Sorting algorithm is often asked by interviewers during interviews. At the beginning, I just memorized it by rote. Now I draw time to understand the essence behind each algorithm, so that I can understand it and memorize it. 1. Bubble sorting The idea of bubble sorting is to exchange two elements. Bubble, as the name suggests, is to bubble the largest or the smallest number to the top after a...