How many types of linked lists what are they?
How many types of data structures?
Answer Posted / avinash jadhav
There are three types of linked list:
1. Singly liked list
2. Doubly link list
3. Circular link list
There are two types of data structures:
1. Linear Data Structure: In this data structure we are
doing the operation sequentially on the data.
examples; Arrays, stacks, queues, and linked list.
2. Non- Linear data structure:In this data structure we are
doing the operation randomly.
examples; Trees and Graphs.
| Is This Answer Correct ? | 25 Yes | 1 No |
Post New Answer View All Answers
simple program of graphics and their output display
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
ATM machine and railway reservation class/object diagram
What does malloc () calloc () realloc () free () do?
What is a substring in c?
What are the three constants used in c?
What are type modifiers in c?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is the argument of a function in c?
Is it fine to write void main () or main () in c?
How do you do dynamic memory allocation in C applications?
What is the condition that is applied with ?: Operator?
Is array a primitive data type in c?
What is bubble sort in c?
Implement bit Array in C.