Skip to main content

DSL 16

Data Structure Lab :


Practical B16 : 

Write a Python program to store first year percentage of students in array. Write function for sorting array of floating point numbers in ascending order using quick sort and display top five scores.

The Code for above problem is as follows :

   
 # sppucseguru  
   
 arr=[]  
 n=int(input("Enter Total no. of Students "))  
 for i in range(n):  
   ele=float(input("Enter Percentage "))  
   arr.append(ele)  
     
 print("Before Sorting : ",arr)  
 def Partition(arr,low,high):  
     pivot=arr[high]  
     pindex=low  
     for i in range(low,high):  
       if arr[i]<pivot:  
         arr[i],arr[pindex]=arr[pindex],arr[i]  
         pindex+=1  
     arr[pindex],arr[high]=arr[high],arr[pindex]  
     return pindex  
   
 def QSort(arr,low,high):  
   if low<high:  
       
     pindexNew=Partition(arr, low, high)  
       
     QSort(arr,low,pindexNew-1)  
     QSort(arr,pindexNew+1,high)  
   
      
 QSort(arr,0,n-1)  
 print("After Sorting : ",arr)  
   

Comments

Popular posts from this blog

Circle Triangle Pattern

  Group A   Practical 3 a   Problem Statement :   a) Write C++ program to draw the following pattern. Use DDA line and Bresenham‘s circle drawing algorithm. Apply the concept of encapsulation. Check Out Code Here  ðŸ‘‡ Output :  Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊

DSL A2

  Write a Python program to store marks scored in subject “Fundamental of Data Structure” by N students in the class. Write functions to compute following:  a) The average score of class  b) Highest score and lowest score of class  c) Count of students who were absent for the test  d) Display mark with highest frequency The Code for above problem is as follows : """ @author: SPPU SE GURU """ total=int(input ("Enter total no. of students in your class ")) pre=int(input("No. of students appeared for FDS exam : ")) U=[] for i in range (total): i=i+1 U.append(i) R=[] for i in range(pre): roll=int(input("Enter Roll no. of students present for test :- ")) R.append(roll) M=[] for i in range(pre): print("Enter Roll no. ",R[i],end=" ") marks=int(input("Marks:- ")) M.append(marks) print("********** Solutions Are as fo...

OOP 4

  Object Oriented Programming Group B - Practical : 4 Problem Statement :  Write a C++ program that creates an output file, writes information to it, closes the file, open it again as an input file and read the information from the file. Check Out Code Here  ðŸ‘‡ Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊