img
All Q&A
1

What do you mean by recursion? Write down a C function to find out the GCD of two nos. using recursive technique.

22 December, 2024
Recursion is a programming technique that allows the programmer to express operations in terms of themselves. In C, this takes the form of a function that calls itself.
2

What is binary tree? Construct a binary tree using the inorder and postorder traversal of the node given below :

Inorder : D B F E A G C L J H K

Postorder : D F E B G L J K H C A

22 December, 2024
A binary tree consists of a finite set of element that can be partitioned into three distinct subset called root, the left and right sub tree. If there are no elements in the binary tree it is called an empty binary tree.
4

What is a B-Tree? Show how the letters A to P English alphabet can be entered into a B-tree of order 4.

 

 

22 December, 2024
A B-Tree of order 'm' is an “m" way tree such that 1. All leaf nodes are at the same level.
6

What is a Judy array?

22 December, 2024
Judy array is a complex but very fast associative array data structure for storing and looking up values using integer or string keys. Unlike normal arrays, Judy arrays may be sparse;