Data Structures: CRT Technical by Naresh I Technologies
Data Structures: CRT Technical by Naresh I Technologies
Technologies
D a ta S tru c tu re s
1. What is data structure?
A data structure is a way of organizing data that considers not only
the items stored, but also their relationship to each other. Advance
knowledge about the
relationship between data items allows designing of efficient
algorithms for the
manipulation of data.
2. List out the areas in which data structures are applied extensively?
Compiler Design,
Operating System
Database Management System
Statistical analysis package
Numerical Analysis
Graphics
Artificial Intelligence
Simulation
Null Branches
21. In the given binary tree, using array you can store the
node 4 at which location? At location 6
123- -4--5
Root LC1 RC1 LC2 RC2 LC3 RC3 LC4 RC4
where LCn means Left Child of node n and RCn means Right
Child of node n
23. For the given graph, draw the DFS and BFS? The given
graph:
BFS: A X G H P E M Y J
DFS: A X H P E Y M J G
24. Classify the Hashing Functions based on the various
methods by which the key value is found.
Direct method
Subtraction method
Modulo-Division method
Digit-Extraction method
Mid-Square method
Folding method
Pseudo-random method.