Saturday 26 September 2020

Pinnacle Club Assignment.(Group C)


 Problem Statement:

Department of Computer Engineering has student's club named 'Pinnacle Club'. Students of second, third and final year of department can be granted membership on request. Similarly one may cancel the membership of club. First node is reserved for president of club and last node is reserved for secretary of club. Write C++ program to maintain club member‘s information using singly linked list. Store student PRN and Name. Write functions to:
a) Add and delete the members as well as president or even secretary.
b) Compute total number of members of club
c) Display members
d) Two linked lists exists for two divisions. Concatenate two lists.

 

Source Code: (Partial)

 




















 

 

 

 

 

 

 

 

 

 

 

 

 

 



data structures and algorithms Web Developer

Friday 11 September 2020

Write python program to store 10th class percentage of students in array. Write function for sorting array of floating point numbers in ascending order using radix sort and display top five scores


 Problem Statement:

 Write python program to store 10th class percentage of students in array. Write function for sorting array of floating point numbers in ascending order using radix sort and display top five scores.

 Radix Sort Source Code For Integer Numbers:

Output: 

 Radix Sort For Floating point numbers:




OUTput:







































data structures and algorithms Web Developer