Write a Program in C/C++ to enter two strings and find the length of two strings without using a pre-defined function.
Home/Computer Science/Data Structure/Page 10
SIKSHAPATH Latest Questions
DEvil
Asked: November 28, 2021In: Data Structure
Rk
Asked: November 27, 2021In: Data Structure
Find the infix equivalents of the following postfix equivalents: (A) A B + C * D – (B) ABC * + D –
priyanshi2329
Asked: November 26, 2021In: Data Structure
Create a binary search tree with the input given below: 98, 2, 48, 12, 56, 32, 4, 67, 23, 87, 23, 55, 46 (a) Insert 21, 39, 45, 54, and 63 into the tree (b) Delete values 23, 56, 2, ...
Minni
Asked: November 24, 2021In: Data Structure
Write a C/C++ program to implement Binary Search Tree.
Convert the following infix expressions to their postfix equivalents: (A) ((A – B) + D / ((E + F) * G)) (B) ( A – 2 * (B + C) / D * E) + F (C) 14 ...