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
Explain argument and its types.
What is preprocessor with example?
What is meant by operator precedence?
How does pointer work in c?
What is c system32 taskhostw exe?
What is a good way to implement complex numbers in c?
What is #line?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is the difference between text and binary modes?
Why n++ execute faster than n+1 ?
Tell me about low level programming languages.
Explain what does the function toupper() do?
Why #include is used in c language?
Why flag is used in c?
What is getch () for?