-
Notifications
You must be signed in to change notification settings - Fork 0
/
Uzytkownik_wybiera_sposob_sortowania.py
56 lines (47 loc) · 1.47 KB
/
Uzytkownik_wybiera_sposob_sortowania.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
def sort_wybierz():
for i in range(len(numbers)):
min_idx = i
for j in range(i+1, len(numbers)):
if numbers[min_idx] > numbers[j]:
min_idx = j
numbers[i], numbers[min_idx] = numbers[min_idx], numbers[i]
def sort_wstaw():
for i in range(1, len(numbers)):
key = numbers[i]
j = i-1
while j >= 0 and key < numbers[j]:
numbers[j + 1] = numbers[j]
j -= 1
numbers[j + 1] = key
def sort_bubble():
#numbers = [5 ,4 ,3 ,5 ,1]
temp = 0
sortowanie = True
while sortowanie == True:
sortowanie = False
for i in range(len(numbers) - 1 - temp):
if numbers[i] > numbers[i + 1]:
numbers[i], numbers[i+1] = numbers[i + 1], numbers[i]
sortowanie = True
temp += 1
# Użytkownik wybiera sposób sortowania
print("Wybierz sposób sortowania:")
print("1 - sortowanie przez wybieranie")
print("2 - ssortowanie przez wstawianie")
print("3 - sortowanie bombelkowe")
choice = int(input())
# Użytkownik wpisuje 5 liczb
numbers = []
print("Wprowadź pięć liczb oddzielonych spacją:")
numbers = [int(x) for x in input().split()]
if choice == 1: # Sortowanie przez wybieranie
sort_wybierz()
elif choice == 2:
sort_wstaw() # Sortowanie przez wstawianie
elif choice == 3:
sort_bubble() # Sortowanie bombelkowe
print("Posortowane liczby:")
for i in numbers:
print(i, end=" ")
print()
end = input("wcisnij enter")