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
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What does double pointer mean in c?
Why double pointer is used in c?
what is the format specifier for printing a pointer value?
Write a program to print factorial of given number without using recursion?
What is optimization in c?
What is sizeof int in c?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What is the difference between a free-standing and a hosted environment?
What is static identifier?
What is #include conio h?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What does 2n 4c mean?
What are the types of data types and explain?