Practical 6. Program based on triesi. Create a text file containing keys{“and”, “bat”, “ ball”,“book”,“cot”, “cotton”, “internet”, “interview”, “joy”,“job”, “King”, “Lion”, “man”, “mango”, “manage”}separated by tab and then read those keys and insert themin trie and search the key which is accepted as input fromuserii. Read the keys from char array which is already given andsearch the keys which are accepted as input from useriii. Read the keys from char array and search those keys which are given in text file
Reviewed by RISHI and ARYAN
on
23:35
Rating: 5
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #define MAX_NODES 100 // Structure to represent a graph using ...Read More
Practical 8. Implement an Algorithm for detecting cycle in given graph G :Accept graph as input from fileAccept graph as input in the form of adjacency list Accept graph as input in the form of adjacency matrix.
Reviewed by RISHI and ARYAN
on
22:55
Rating: 5
Practical 5. Program based on binary search Trees maintain employee database and implement task: 1.Display the names of employee based on salary 2.Display the name of employee having maximum and minimum salary 3.Find the total monthly expenses of the company on employee salary
Reviewed by RISHI and ARYAN
on
22:52
Rating: 5
#include <stdio.h> #include <stdlib.h> // Define a node structure struct Node { int data; // Store the bill amount struc...Read More
Practical 3. Program based on linked list:
Maintain a record of coffee shop database implement following:
i. Display the total sale of a day
ii. Maximum and minimum bill of a day
Reviewed by RISHI and ARYAN
on
21:21
Rating: 5