2024 - SCIENCE BUZZ
Practical 9: Implement application using suitable data structure for Railway Reservation System Practical 9: Implement application using suitable 
data structure for Railway Reservation System Reviewed by RISHI and ARYAN on 09:20 Rating: 5

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

RISHI and ARYAN 23:35
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #define ALPHABET_SIZE 26 struct TrieNo...Read More
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 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
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. 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 7. Program for detection of single node failure in a network. Practical 7. Program for detection of single node failure in a network. Reviewed by RISHI and ARYAN on 22:54 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 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
Practical 4. Program based on hashing.(Icecream Shop) Practical 4. Program based on hashing.(Icecream Shop) Reviewed by RISHI and ARYAN on 21:24 Rating: 5
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 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

Practical 2 ( A ). Queue using Stack

RISHI and ARYAN 21:17
#include<stdio.h> #define m 100 int s1[m], s2[m]; int top1 = -1, top2 = -1; int count = 0; void push1(int x) {     if (top1 == m - 1) ...Read More
Practical 2 ( A ). Queue using Stack Practical 2 ( A ). Queue using Stack Reviewed by RISHI and ARYAN on 21:17 Rating: 5
Practical 1 ( B ). Implementation of queue using menu driven program. Practical 1 ( B ). Implementation of queue using menu driven program. Reviewed by RISHI and ARYAN on 21:01 Rating: 5
Practical 1 ( A ). Implementation of stack using menu driven program. Practical 1 ( A ). Implementation of stack using menu driven program. Reviewed by RISHI and ARYAN on 20:58 Rating: 5
Powered by Blogger.