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
What is c standard library?
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.
Write a program to print all permutations of a given string.
Can you define which header file to include at compile time?
What is the difference between abs() and fabs() functions?
How can you pass an array to a function by value?
Why does not c have an exponentiation operator?
What are the advantages of external class?
How can you avoid including a header more than once?
What are the advantages of using new operator as compared to the function malloc ()?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is a structure in c language. how to initialise a structure in c?
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.
What is structure data type in c?
What is function prototype?