Просмотр исходного кода

Merge branch 'sortingQuicksort' into sortingFinal

Ricardo-gonzalez32 2 лет назад
Родитель
Сommit
73098df823
1 измененных файлов: 26 добавлений и 0 удалений
  1. 26
    0
      sorting.py

+ 26
- 0
sorting.py Просмотреть файл

65
 
65
 
66
 def quickSort(lista):
66
 def quickSort(lista):
67
 	#definan el algoritmo de ordenamiento quicksort
67
 	#definan el algoritmo de ordenamiento quicksort
68
+	elements = len(lista)
69
+    
70
+    #Base case
71
+	if elements < 2:
72
+		return lista
73
+    
74
+	current_position = 0 #Position of the partitioning element
75
+
76
+	for i in range(1, elements): #Partitioning loop
77
+		if lista[i] <= lista[0]:
78
+			current_position += 1
79
+			temp = lista[i]
80
+			lista[i] = lista[current_position]
81
+			lista[current_position] = temp
82
+
83
+	temp = lista[0]
84
+	lista[0] = lista[current_position] 
85
+	lista[current_position] = temp #Brings pivot to it's appropriate position
86
+    
87
+	left = quickSort(lista[0:current_position]) #Sorts the elements to the left of pivot
88
+	right = quickSort(lista[current_position+1:elements]) #sorts the elements to the right of pivot
89
+
90
+	lista = left + [lista[current_position]] + right #Merging everything together
91
+
92
+	
93
+    
68
 	return lista
94
 	return lista
69
 
95
 
70
 
96