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 / shumaila bashir sheikh

There are basically three types of linked list.
1) single linked list
2) Double Linked list
3) Circular linked list

there are two types of data structures
1) Linear Data Structures
Array, Linked list, pointers, stack, queues etc
2) Non-Linear Data Structure
Trees, Graphs

Is This Answer Correct ?    93 Yes 7 No

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

Answer / prakash.m

basically three types includes

Singly LL.
Double LL.
Circular LL.

Data structures include

stacks
queues
linked list.
graphs.
trees.

Is This Answer Correct ?    80 Yes 11 No

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

Answer / priyanka nigam

There are two types of linked list.
Single and Double
Single would move only in one direction while double linked
list can move in both directions ie forward and backward.
Data Structures
1. Arrays
2.Linked List
3.Structures
4.Trees
5.Queues
6.Stack

Is This Answer Correct ?    84 Yes 28 No

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

Answer / ruchi singh

there are four types of linked list ,these are given below:
1.linear singly linked list
2.circular singly linked list
3.two way or doubly linked list
4.cicular doubly linked list

Is This Answer Correct ?    39 Yes 3 No

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

Answer / 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

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

Answer / 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

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

Answer / virendra

1. singly link list
2. doubly link list
3. circular link list

Is This Answer Correct ?    15 Yes 2 No

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

Answer / dd

linked lists are used mainly for system side applications
as well as applications side.
why these are used means, it is very highly friendly for
insertion and deletion even middle also.

Is This Answer Correct ?    11 Yes 0 No

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

Answer / manojkumar

linked lists are used mainly for system side applications
as well as applications side.

I accept this answer.
But how ?Where do we have to insert?why we have to insert?
In system side means, where it is?
please explain me .
Advance thanks

Is This Answer Correct ?    11 Yes 0 No

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

Answer / santosh

there are three types of linked list
1)singly linked list
2)doubly linked list
3)circular linked list
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 ?    5 Yes 0 No

Post New Answer

More C Interview Questions

what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.

6 Answers   HCL,


This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory

0 Answers  


Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....

2 Answers  


how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"

4 Answers   Wipro,


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

0 Answers  






When should the volatile modifier be used?

0 Answers  


A MobileNumber is a VIP number if it satisfy the following conditions. The operator should be Vodafone. Atleast one 0 (Zero) should be exist in mobile number. The number should not end with 8. The single digit sum of all the digits in the number should be equal to 9. For example if the number is 9876543210, the sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9. Write a method: private boolean isVIPMobileNumber(String mobileNum, String operator) mobileNum phone number operator mobile operator as bsnl, Vodafone

1 Answers  


Famous puzzles which are generally asked by companies during interviews ?

1 Answers   3D PLM, Yahoo,


write a program to compare 2 numbers without using logical operators?

5 Answers   IBM,


print the table 5 in loops

3 Answers  


what is ANSI and ISO

7 Answers   HCL,


Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.

3 Answers   HCL,


Categories