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

in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?

4 Answers   Infosys, NetApp,


what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }

4 Answers  


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

0 Answers   Wilco,


A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream

0 Answers  


How do you convert strings to numbers in C?

0 Answers  






Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL

0 Answers  


What are the 4 types of unions?

0 Answers  


Do you know what are bitwise shift operators in c programming?

0 Answers  


Write a program to compute the following 1!+2!+...n!

4 Answers  


How do you generate random numbers in C?

0 Answers  


Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program

19 Answers   CTS, HCL, TCS,


how to make program without <> in library.

1 Answers   ADITI,


Categories