Answer Posted / nashiinformaticssolutions
A specific kind of linked list that allows traversal across the data components in both directions is called a doubly linked list.
Every node has two linkages, one to the node next to it and one to the node in front of it, which enables accomplishing this.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is structure in c explain with example?
How is a structure member accessed?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Can you write a programmer for FACTORIAL using recursion?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is scope rule in c?
What are the keywords in c?
Explain what is page thrashing?
Create a simple code fragment that will swap the values of two variables num1 and num2.
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What are logical errors and how does it differ from syntax errors?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is memcpy() function?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is quick sort in c?