mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Wiggle sort (#2419)
* wiggle sort : type hint + doctest * fixed function name in docstring * correction
This commit is contained in:
parent
08eb1efafe
commit
f564c9d7c6
|
@ -9,18 +9,30 @@ one possible Wiggle Sorted answer is [3, 5, 1, 6, 2, 4].
|
|||
"""
|
||||
|
||||
|
||||
def wiggle_sort(nums):
|
||||
"""Perform Wiggle Sort."""
|
||||
for i in range(len(nums)):
|
||||
def wiggle_sort(nums: list) -> list:
|
||||
"""
|
||||
Python implementation of wiggle.
|
||||
Example:
|
||||
>>> wiggle_sort([0, 5, 3, 2, 2])
|
||||
[0, 5, 2, 3, 2]
|
||||
>>> wiggle_sort([])
|
||||
[]
|
||||
>>> wiggle_sort([-2, -5, -45])
|
||||
[-45, -2, -5]
|
||||
>>> wiggle_sort([-2.1, -5.68, -45.11])
|
||||
[-45.11, -2.1, -5.68]
|
||||
"""
|
||||
for i, _ in enumerate(nums):
|
||||
if (i % 2 == 1) == (nums[i - 1] > nums[i]):
|
||||
nums[i - 1], nums[i] = nums[i], nums[i - 1]
|
||||
|
||||
return nums
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
print("Enter the array elements:\n")
|
||||
print("Enter the array elements:")
|
||||
array = list(map(int, input().split()))
|
||||
print("The unsorted array is:\n")
|
||||
print(array)
|
||||
wiggle_sort(array)
|
||||
print("Array after Wiggle sort:\n")
|
||||
print("The unsorted array is:")
|
||||
print(array)
|
||||
print("Array after Wiggle sort:")
|
||||
print(wiggle_sort(array))
|
||||
|
|
Loading…
Reference in New Issue
Block a user