moved assignment-29 given by ma'am to archive
This commit is contained in:
parent
e7148a6963
commit
0d906e3634
@ -1,31 +0,0 @@
|
|||||||
# Function for quick sort:
|
|
||||||
def quicksort(arr):
|
|
||||||
if len(arr) <= 1:
|
|
||||||
return arr
|
|
||||||
|
|
||||||
pivot = arr[len(arr) // 2]
|
|
||||||
left = [x for x in arr if x < pivot]
|
|
||||||
middle = [x for x in arr if x == pivot]
|
|
||||||
right = [x for x in arr if x > pivot]
|
|
||||||
|
|
||||||
return quicksort(left) + middle + quicksort(right)
|
|
||||||
|
|
||||||
# Function for displaying top scores:
|
|
||||||
def top5(arr):
|
|
||||||
sorted_arr = quicksort(arr)
|
|
||||||
top_scores = sorted_arr[-5:][::-1]
|
|
||||||
return top_scores
|
|
||||||
|
|
||||||
# Defining main function:
|
|
||||||
def main():
|
|
||||||
total=int(input("Total number of students are:\t"))
|
|
||||||
percent=[]
|
|
||||||
for i in range(total):
|
|
||||||
percent_in=float(input(f"Enter percentage for student {i+1}:\t"))
|
|
||||||
percent.append(percent_in)
|
|
||||||
print(f"\nPercentages of students are:\t {percent}")
|
|
||||||
print(f"\n------------------\nSorted marks (using quick sort algorithm):\t{quicksort(percent)}\n------------------")
|
|
||||||
print(f"\n------------------\nTop five scores are:\t{top5(percent)}\n------------------\n")
|
|
||||||
|
|
||||||
# Calling main function:
|
|
||||||
main()
|
|
Loading…
Reference in New Issue
Block a user