How many types of linked lists what are they?
How many types of data structures?
Answer Posted / majid
It is the type of non linear data structure.
1)singly list
2)singly circular list
3)singly list with header,tail.
4)singly list with head ,tail and circular
5)doubly list
6)circular doubly list
7)with header.
8)with tail.
9)with head ,tail and circular
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Explain what is a static function?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What is the difference between variable declaration and variable definition in c?
What are logical errors and how does it differ from syntax errors?
Explain what is the concatenation operator?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
What is c language and why we use it?
What the different types of arrays in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Why does this code crash?
Why is main function so important?
What is structure packing in c?
please send me the code for multiplying sparse matrix using c
Explain what is the use of a semicolon (;) at the end of every program statement?