def main(): print("버블 정렬") bubble1 = Bubble1() test(bubble1, mode="r") bubble2 = Bubble2() test(bubble2, mode="r") bubble3 = Bubble3() test(bubble3, mode="r")
def main(): print("선택 정렬") selection = Selection() test(selection, mode="r")
def main(): print("셸 정렬") shell1 = Shell() test(shell1) shell2 = Shell2() test(shell2, mode="r")
def main(): print("삽입 정렬") insertion = Insertion() test(insertion, mode="r")
def main(): print("병합 정렬") merge = Merge() test(merge)
def main(): print("도수 정렬") count = Count() test(count)
def main(): print("힙 정렬") heap = HeapSort() test(heap)
def main(): print("퀵 정렬") quick = Quick() test(quick) quick = Quick() test(quick, mode="r")