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
C language questions for civil engineering
Is r written in c?
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); } }
What is array of structure in c?
What is the newline escape sequence?
If null and 0 are equivalent as null pointer constants, which should I use?
Explain what are the different file extensions involved when programming in c?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
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
What are the functions to open and close the file in c language?
What is calloc in c?
What is the role of && operator in a program code?
Explain the properties of union.
What are the modifiers available in c programming language?
What is a volatile keyword in c?