In diesem Artikel lernen wir ein Python-Programm zur Wellenformsortierung eines Arrays kennen.
Angenommen, wir haben ein unsortiertes Eingabearray. Wir werden nun das Eingabearray nach Wellenform sortieren. Wenn das Array 'arr [0..n-1]' arr [0] >= arr [1] = arr [3] = erfüllt . ...., das Array wird in eine Wellenform sortiert.
Hier sind die verschiedenen Methoden, mit denen diese Aufgabe erledigt wird &miinus;
Verwenden Sie die integrierte Funktion sort()
Ohne Verwendung integrierter Funktionen
Im Folgenden sind die Algorithmen/Schritte aufgeführt, die zur Ausführung der gewünschten Aufgabe befolgt werden müssen
sort() (sortiert die Liste in aufsteigender/absteigender Reihenfolge), um das Eingabearray in aufsteigender Reihenfolge zu sortieren.
for-Schleife, um bis zur Array-Länge zu durchlaufen (Schritt=2)
len() (die die Anzahl der Elemente im Objekt zurückgibt), um die Länge des Eingabearrays zu ermitteln.
sortingInWaveform() auf, indem Sie das Eingabearray und die Länge des Arrays als Argumente übergeben
for-Schleife, um alle Elemente des Arrays zu durchlaufen
# creating a function to sort the array in waveform by accepting # the input array, array length as arguments def sortingInWaveform(inputArray, arrayLength): # sorting the input array in ascending order using the sort() function inputArray.sort() # travsersing till the array length alternatively(step=2) for k in range(0, arrayLength-1, 2): # swapping the adjacent elements i.e, current and it's next inputArray[k], inputArray[k+1] = inputArray[k+1], inputArray[k] # input array inputArray = [12, 45, 15, 4, 6, 70, 68, 3, 25] # getting the length of the input array arrayLength = len(inputArray) # printing the given array/list print("The Given list is:", inputArray) # calling the above defined sortingInWaveform() function by # passing input array, length of the array as arguments sortingInWaveform(inputArray, arrayLength) print("The Result Array after sorting in wave form is:") # traversing through all the elements of the array for k in range(0, arrayLength): # printing the current element of the array/list print(inputArray[k], end=" ")
The Given list is: [12, 45, 15, 4, 6, 70, 68, 3, 25] The Result Array after sorting in wave form is: 4 3 12 6 25 15 68 45 70
Zeitkomplexität − O(nLogn).
Hier wurde das angegebene Array mithilfe der Sortierfunktion sortiert, die normalerweise eine Zeitkomplexität von O(NlogN) aufweist.Wenn Sie einen O(nLogn)-Sortieralgorithmus wie
Merge Sort, Heap Sort usw. anwenden, beträgt die zeitliche Komplexität der oben angegebenen Methode O(nLogn).
Methode 2: Verwenden Sie nur eine Schleife
, um alle geraden Indexelemente zu durchlaufen, indem Sie 0, Array-Länge und Schrittwert als Argumente übergeben
, um zu prüfen, ob das aktuelle gerade Indexelement kleiner als das vorherige Element ist.
, um zu überprüfen, ob das aktuelle gerade Indexelement kleiner als das nächste Element ist.
auf, indem Sie das Eingabearray und die Länge des Arrays als Argumente übergeben
, um die Elemente des Arrays zu durchlaufen.
# creating a function to sort the array in waveform by accepting # the input array, array length as arguments def sortingInWaveform(inputArray, arrayLength): # traversing through all the even index elements for p in range(0, arrayLength, 2): # checking whether the current even index element # is smaller than the previous if (p > 0 and inputArray[p] < inputArray[p-1]): # swapping the elements if the condition is true inputArray[p], inputArray[p-1] = inputArray[p-1], inputArray[p] # checking whether the current even index element # is smaller than the next element if (p < arrayLength-1 and inputArray[p] < inputArray[p+1]): # swapping the elements if the condition is true inputArray[p], inputArray[p+1] = inputArray[p+1], inputArray[p] # input array inputArray = [12, 45, 15, 4, 6, 70, 68, 3, 25] # getting the length of the input array arrayLength = len(inputArray) print("The Given list is:", inputArray) # calling the above defined sortingInWaveform() function by # passing input array, length of the array as arguments sortingInWaveform(inputArray, arrayLength) print("The Result Array after sorting in wave form is:") # traversing through all the elements of the array for k in range(0, arrayLength): # printing the current element print(inputArray[k], end=" ")
Ausgabe
The Given list is: [12, 45, 15, 4, 6, 70, 68, 3, 25] The Result Array after sorting in wave form is: 45 12 15 4 70 6 68 3 25
- O(n). Hier haben wir stattdessen nicht die Sortierfunktion verwendet, sondern nur die for-Schleife, um die Elemente des angegebenen Arrays zu durchlaufen, das im Durchschnitt eine Zeitkomplexität von O(N) aufweist.
Fazit
Das obige ist der detaillierte Inhalt vonWellenformsortierung von Arrays mit Python. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!