How many types of linked lists what are they?
How many types of data structures?
Answer Posted / 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 View All Answers
Calculate 1*2*3*____*n using recursive function??
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
while initialization of array why we use a[][2] why not a[2][]...?
What is d'n in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Explain goto?
What are all different types of pointers in c?
What is dynamic variable in c?
What are the main characteristics of c language describe the structure of ac program?
Why do we need arrays in c?
Do array subscripts always start with zero?
How can I find out the size of a file, prior to reading it in?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is difference between structure and union?
I came across some code that puts a (void) cast before each call to printf. Why?