Browse Source

Merge branch 'sortingQuicksort' into sortingFinal

Ricardo-gonzalez32 2 years ago
parent
commit
73098df823
1 changed files with 26 additions and 0 deletions
  1. 26
    0
      sorting.py

+ 26
- 0
sorting.py View File

@@ -65,6 +65,32 @@ def heapSort(lista):
65 65
 
66 66
 def quickSort(lista):
67 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 94
 	return lista
69 95
 
70 96