List of Practical
List of Practical
List of Experiment
List of Experiment
between city A and city B then there is an edge between the
cities. The cost of the edge can be the time that flight take to
reach city B from A, or the amount of fuel used for the journey.
Represent this as a graph. The node can be represented by
airport name or name of the city. Use adjacency list
representation of the graph or use adjacency matrix
representation of the graph. Check
whether the graph is connected or not. Justify the storage
representation used.
Group D
D-18 Given sequence k = k1 <k2 < … <kn of n sorted keys,
with a search probability pi for each key ki . Build the Binary
8
search tree that has the least search cost given the access
probability for each key?
D-19 A Dictionary stores keywords and its meanings. Provide
facility for adding new keywords, deleting keywords, updating
values of any entry. Provide facility to display whole data sorted
9
in ascending/ Descending order. Also find how many maximum
comparisons may require for finding any keyword. Use Height
balance tree and find the complexity for finding a keyword
Group E
E-20 Consider a scenario for Hospital to cater services to
different kinds of patients as Serious (top priority), b) non-
10
serious (medium priority), c) General Checkup (Least priority).
Implement the priority queue to cater services to the patients.
Group F
F-23 Department maintains a student information. The file
contains roll number, name, division and address. Allow user
to add, delete information of student. Display information of
11 particular employee. If record of student does not exist an
appropriate message is displayed. If it is, then the system
displays the student details. Use sequential file to main the
data.
F-24 Company maintains employee information as employee
ID, name, designation and salary. Allow user to add, delete
12 information of employee. Display information of particular
employee. If employee does not exist an appropriate message is
PEOPLES EMPOWERMENT GROUP
ISBM COLLEGE OF ENGINEERING, PUNE
Department of Artificial Intelligence and Data Science
Academic Year 2023-24
List of Experiment
displayed. If it is, then the system displays the employee
details. Use index sequential file to maintain the data.