How many types of linked lists what are they?
How many types of data structures?

Answer Posted / deepak nagpal

There are three types of linked lists-
1.singly linked list
2.doubly linked list
3.circular linked list



There are six types of data structurs-

1.linked list
2.array
3.stack
4.queues
5.tree
6.graphs

Is This Answer Correct ?    43 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When should the volatile modifier be used?

681


What do you mean by c what are the main characteristics of c language?

564


Is there any possibility to create customized header file with c programming language?

620


Can you add pointers together? Why would you?

642


Explain what is a program flowchart and explain how does it help in writing a program?

645






What is the difference between exit() and _exit() function in c?

578


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

650


Why is c so popular?

644


What does *p++ do?

582


What is the difference between declaring a variable and defining a variable?

720


What does d mean?

581


What will be the outcome of the following conditional statement if the value of variable s is 10?

758


What does c mean in basketball?

561


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2215


Can you please explain the difference between syntax vs logical error?

693