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

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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

C language questions for civil engineering

1487


Is r written in c?

912


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

2278


What is array of structure in c?

813


What is the newline escape sequence?

845


If null and 0 are equivalent as null pointer constants, which should I use?

829


Explain what are the different file extensions involved when programming in c?

855


WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.

2260


i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical

2102


What are the functions to open and close the file in c language?

820


What is calloc in c?

897


What is the role of && operator in a program code?

808


Explain the properties of union.

834


What are the modifiers available in c programming language?

996


What is a volatile keyword in c?

906