What is a linked list?

Answer Posted / rashid

A linked list is a linear collection of self referential
structs. LL consists of nodes connected by pointer links.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do while loop is used?

800


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

1869


Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.

971


What polymorphism means?

826


Plese get me a perfect C++ program for railway/airway reservation with all details.

3681


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2395


what type of questions

1917


Can bst contain duplicates?

967


when to use 'mutable' keyword and when to use 'const cast' in c++

1909


How can you overcome the diamond problem in inheritance?

980


what's the basic's in dot net

1955


hi all..i want to know oops concepts clearly can any1 explain??

1908


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1726


Why do we need polymorphism in c#?

906


How long to learn object oriented programming?

843