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

Answers were Sorted based on User's Feedback



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

Answer / saranya

singly link list
doubly link list
circular link list

Is This Answer Correct ?    1 Yes 0 No

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

Answer / heena

There are 4 types of linked list:
1)Singly or linear or one way linked list.
2)Doubly or two way linked list.
3)Circular linked list.
4)Header or sentinel linked list.
Data structure can be broadly classified in:
1)Primary data structure - 2) Secondary data structure
Character Array
Integer Pointer
Float Structure
Double Union
Void Enum etc.

Is This Answer Correct ?    1 Yes 0 No

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

Answer / c manojkumar

Please explain me any one how these cocepts are useful?
Where we have to use?
Why we have to use these techniques?

Is This Answer Correct ?    13 Yes 13 No

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

Answer / majid

It is the type of non linear data structure.
1)singly list
2)singly circular list
3)singly list with header,tail.
4)singly list with head ,tail and circular

5)doubly list
6)circular doubly list
7)with header.
8)with tail.
9)with head ,tail and circular

Is This Answer Correct ?    1 Yes 1 No

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

Answer / ankit prajapati jmp

There are two tyes of link lists that are given beloow
1.single linked link list,
2.double linked link list

Is This Answer Correct ?    0 Yes 0 No

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

Answer / phom sophany

how namy type of lists what are they?

Is This Answer Correct ?    0 Yes 0 No

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

Answer / gaurav s

Not a single person mentioned generalized linked list?

Is This Answer Correct ?    1 Yes 2 No

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

Answer / deepak kumar shrivastava

There are five types of Link List
1. singly link list
2. doubly link list
3. singly circular link list
4. doubly circular link list
5. XOR link list

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Interview Questions

Code for calculating square root without using library function, of math.h

4 Answers   IBM,


How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...

0 Answers  


When is the “void” keyword used in a function?

1 Answers  


Why we write conio h in c?

0 Answers  


what is difference between declaring the pointer as int and char in c language?

3 Answers  


2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above

4 Answers   Siemens,


C language questions for civil engineering

0 Answers   Tech Mahindra,


Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }

2 Answers  


main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above

0 Answers  


what are the advantages of a macro over a function?

0 Answers   TCS,


What are the disadvantages of a shell structure?

0 Answers  


main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?

1 Answers   GATE,


Categories