How many types of linked lists what are they?
How many types of data structures?
Answers were Sorted based on User's Feedback
Answer / saranya
singly link list
doubly link list
circular link list
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / heena
There are 4 types of linked list:
1)Singly or linear or one way linked list.
2)Doubly or two way linked list.
3)Circular linked list.
4)Header or sentinel linked list.
Data structure can be broadly classified in:
1)Primary data structure - 2) Secondary data structure
Character Array
Integer Pointer
Float Structure
Double Union
Void Enum etc.
| Is This Answer Correct ? | 1 Yes | 0 No |
Please explain me any one how these cocepts are useful?
Where we have to use?
Why we have to use these techniques?
| Is This Answer Correct ? | 13 Yes | 13 No |
Answer / 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 |
Answer / ankit prajapati jmp
There are two tyes of link lists that are given beloow
1.single linked link list,
2.double linked link list
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gaurav s
Not a single person mentioned generalized linked list?
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / deepak kumar shrivastava
There are five types of Link List
1. singly link list
2. doubly link list
3. singly circular link list
4. doubly circular link list
5. XOR link list
| Is This Answer Correct ? | 0 Yes | 2 No |
Write code for finding depth of tree
how to swap two nubers by using a function with pointers?
which will be first in c compiling ,linking or compiling ,debugging.
What does calloc stand for?
Are the variables argc and argv are always local to main?
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 5 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 are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
swapping of two numbers without using third variable using AND and OR operators
Is javascript based on c?
What is the use of static variable in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.