Skip to main content

DSL A3

Data Structure Lab :


Practical A3 : 

Write a Python program for department library which has N books, write functions for following: 

a) Delete the duplicate entries 

b) Display books in ascending order based on cost of books 

c) Count number of books with cost more than 500. 

d) Copy books in a new list which has cost less than 500.

   
 #@author: Vedant  
   
 n=int(input("Enter Total no. of Books in your Library "))  
   
 bn=[]  #Book No. list  
 bp=[]  #Book Price list  
 for i in range(n):  
   c=int(input("Enter the Book NO. "))  
   print("Enter the price of Book NO.",c)  
   p=int(input())  
   bn.append(c)  
   bp.append(p)  
 print("List of your Books",bn)  
 print("List of prices of your Books\n",bp)  
   
 print("<><><><><><><> Solutions Are as follows <><><><><><><><><>")  
   
 # Delete the duplicate entries  
 index=0  
 ubn=[]   #Updated Book No. list  
 ubp=[]   #Updated Book Price list  
 while True:  
   flag=0  
   for i in range(index+1,n):  
     if bn[index]==bn[i]:  
       flag=1  
   if flag==0:  
     ubn.append(bn[index])  
     ubp.append(bp[index])  
   index+=1    
   if index==n:  
     break        
 print("List of Books without duplicate entries :",ubn)  
   
 # Display books in ascending order based on cost of books  
 for i in range (len(ubp)-1):     #Using Bubble Sort  
   for j in range(len(ubp)-i-1):  
     if ubp[j]>ubp[j+1]:  
       ubp[j],ubp[j+1]=ubp[j+1],ubp[j]  
       ubn[j],ubn[j+1]=ubn[j+1],ubn[j]  
 print("Books in ascending order based on cost of books :",ubn)        
   
   
 #Count number of books with cost more than 500        
 count=0  
 for i in range(len(ubp)):  
   if ubp[i]>500:  
     count+=1  
 print("Count number of books with cost more than 500 :-",count)  
   
   
 #Copy books in a new list which has cost less than 500  
 b_500=[]  
 for i in range(len(ubn)):  
   if ubp[i]<500:  
     b_500.append(ubn[i])  
 print("List of books which has cost less than 500 :-",b_500)  
   

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...

DSL E29

 Data Structure Lab : Practical 29 : Problem Statement:  Queues are frequently used in computer programming, and a typical example is the creation of a job queue by an operating system. If the operating system does not use priorities, then the jobs are processed in the order they enter the system. Write C++ program for simulating job queue. Write functions to add job and delete job from queue Check Out Code Here  ðŸ‘‡ // Author : SPPU CSE GURU #include<iostream> using namespace std; class Queue{ private: int front,rear,max; public: int Q[10]; Queue() { front=0; rear=-1; max=10; } void EnQueue(); void DeQueue(); void Display(); }; void Queue::EnQueue() { int data; cout<<"Enter Job no. to Add "<<endl; cin>>data; if(rear...