예제 #1
0
파일: main.py 프로젝트: BuiTran/SortingLab
def dRandomizedQuickSort(x):
    
    randomizedQuickSort = RandomizedQuickSort(x)
    randomizedQuickSort.start()
예제 #2
0
 def testRandomizedQuickSort(self):
     x = [-20,-45,995,912,126,1246,624]
     randomizedQuickSort = RandomizedQuickSort(x)
     randomizedQuickSort.start()
     self.assertEqual(x,[-45.0, -20.0, 126, 624, 912, 995, 1246])