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

can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know???????????

2 Answers   Cognizant,


Program to trim a given character from a string.

5 Answers   NetApp,


5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function

1 Answers   TCS,


What is memory leak in c?

0 Answers  


Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????

3 Answers   TCS,






main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

1 Answers  


What is huge pointer in c?

0 Answers  


Process by which one bit pattern in to another by bit wise operation is?

0 Answers   InterGraph,


What is the difference between new and malloc functions?

0 Answers   InterGraph,


Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).

0 Answers  


write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.

0 Answers   Subex,


How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  


Categories