what is link list?
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
list are the set of items which are brought from various
parts and binded together in which each data may or may not
be having relation..... linked list is basically set of
data 's which has link (locative address) to refer the next
data of that list...
thank u
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravi joshi
Linked list is a data structure where data is logically
viewed as contiguous and helps user in systematically
storing and retrieving the data.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / srinivasu
linked list is distributed memory locations.In this linked
list we have to insert the elements and delete the elements
that means insertion and deletion is possible.And in this
linked list all elements are stored in heap.
| Is This Answer Correct ? | 1 Yes | 0 No |
How can I find the day of the week given the date?
If we have an array of Interger values, find out a sub array which has a maximum value of the array and start and end positions of the array..The sub array must be contiguious. Take the start add to be 4000. For Ex if we have an array arr[] = {-1,-2,-5,9,4,3,-6,8,7,6,5,-3} here the sub array of max would be {8,7,6,5} coz the sum of max contiguous array is 8+7+6+5 = 26.The start and end position is 4014(8) and 4020(5).
5 Answers Microsoft, Motorola,
Which type of language is c?
What is wild pointer in c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
Why ordinary variable store only one value
What is a null string in c?
wat is the meaning of c?
How do you convert strings to numbers in C?
what is the most appropriate way to write a multi-statement macro?