% inserts an element into a sorted list % is_sorted % insert_sort %%%%%%%%%%%%%%%%%%% quick - sort % splitting (pivoting) % consider H be the pivot % L=[4,5,6,1,2,3,4] L1=[1,2,3,4,4], L2=[5,6] % append %%% HW %%%%%%%%%%%%%%%%%%%%%%%%%%%% % insert_sort & quick_sort with acc % select_sort with & without acc % bubble_sort -||-