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

What is c standard library?

924


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.

2484


Write a program to print all permutations of a given string.

948


Can you define which header file to include at compile time?

806


What is the difference between abs() and fabs() functions?

872


How can you pass an array to a function by value?

842


Why does not c have an exponentiation operator?

820


What are the advantages of external class?

812


How can you avoid including a header more than once?

760


What are the advantages of using new operator as compared to the function malloc ()?

1072


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

918


What is a structure in c language. how to initialise a structure in c?

848


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

2889


What is structure data type in c?

762


What is function prototype?

794