Skip to content

Commit cb856c9

Browse files
authoredMay 22, 2021
Update README.md
1 parent 672d715 commit cb856c9

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed
 

‎README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
# SPPU-2019-Pattern-SE-COMP-Data-Structures-Laboratory-Practicals
1+
# SPPU-2019-Pattern-SE-COMP-Data-Structures-Laboratory-Practicals
2+
3+
GroupB_Practical5 : C++ Program To read details of a book consists of chapters, chapters consist of sections and sections consist of subsections. Construct a tree and print the nodes. Find the time and space requirements of your method.
4+
5+
GroupB_Practical7 : Construct an expression tree from the given prefix and traverse it using post order traversal and then delete the entire tree.
6+
7+
GroupC_Practical13 : Represent a given grapg using adjacency matrix/list to perform DFS and using adjacency list to perform BFS. Use the map of the area around the college as a graph. Identify the prominent land marks as nodes and perform DFS and BFS on that.
8+
a) Adjacency Matrix
9+
b) Adjecency List
10+
11+
GroupC_Practical14 : There are flight paths between cities. If there is a flight 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 the airport name or name of the city. Use adjacency list representation of the graph or use adjacency matrix representation of the graph.

0 commit comments

Comments
 (0)
Please sign in to comment.