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


Please Help Members By Posting Answers For Below Questions

Explain built-in function?

589


State the difference between x3 and x[3].

649


c language interview questions & answer

1455


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2220


What are enums in c?

656






difference between native and cross compilers

1671


What does double pointer mean in c?

576


What are the benefits of organizational structure?

568


Write a program of prime number using recursion.

614


A banker has a seif with a cipher. Not to forget the cipher, he wants to write it coded as following: each digit to be replaced with the difference of 9 with the current digit. The banker chose a cipher. Decipher it knowing the cipher starts with a digit different than 9. I need to write a program that takes the cipher from the keyboard and prints the new cipher. I thought of the following: Take the input from the keyboard and put it into a string or an array. Go through the object with a for and for each digit other than the first, substract it from 9 and add it to another variable. Print the new variable. Theoretically I thought of it but I don't know much C. Could you give me any kind of hint, whether I am on the right track or not?

1509


Why c is called object oriented language?

580


What is the use of a conditional inclusion statement in C?

598


What is the use of define in c?

592


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

665


What is #define in c?

616