-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathselection_sort.py
executable file
·89 lines (74 loc) · 2.45 KB
/
selection_sort.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import random
import pygame
from pygame.locals import *
scr_size = (width,height) = (900,600)
FPS = 20
screen = pygame.display.set_mode(scr_size)
clock = pygame.time.Clock()
black = (0,0,0)
white = (255,255,255)
pygame.display.set_caption('Selection Sort')
def generatearray(lowerlimit,upperlimit,length):
arr = []
for i in range(0,length):
arr.append(2*i)
#arr.append(random.randrange(lowerlimit,upperlimit))
random.shuffle(arr)
return arr
# arr = []
# for i in range(0,length):
# arr.append(random.randrange(lowerlimit,upperlimit))
#
# return arr
class sort():
def __init__(self,arr):
self.arr = arr
self.n = len(arr)
self.i = 0
self.image = pygame.Surface((width - width/5,height - height/5))
self.rect = self.image.get_rect()
self.rect.left = width/10
self.rect.top = height/10
self.width_per_bar = self.rect.width / self.n - 2
def update(self):
if self.i < self.n:
self.image.fill(black)
#################Sorting Algorithm here#############################
small_index = self.i
for j in range(self.i,self.n):
if self.arr[j] < self.arr[small_index]:
small_index = j
self.arr[small_index],self.arr[self.i] = self.arr[self.i],self.arr[small_index]
self.i += 1
####################################################################
l = 0
for k in range(0,self.rect.width,self.width_per_bar + 2):
bar = pygame.Surface((self.width_per_bar,self.arr[l]))
bar_rect = bar.get_rect()
bar.fill(white)
bar_rect.bottom = self.rect.height
bar_rect.left = k
self.image.blit(bar,bar_rect)
l += 1
else:
pass
def draw(self):
screen.blit(self.image,self.rect)
def main():
arr = generatearray(1,height - height/5 - 10,240)
selection_sort = sort(arr)
while True:
for event in pygame.event.get():
if event.type == pygame.QUIT:
quit()
if event.type == pygame.KEYDOWN:
pass
if event.type == pygame.KEYUP:
pass
selection_sort.update()
screen.fill(black)
print selection_sort.arr
selection_sort.draw()
pygame.display.update()
clock.tick(FPS)
main()