How many types of linked lists what are they?
How many types of data structures?

Answers were Sorted based on User's Feedback



How many types of linked lists what are they? How many types of data structures?..

Answer / saranya

singly link list
doubly link list
circular link list

Is This Answer Correct ?    1 Yes 0 No

How many types of linked lists what are they? How many types of data structures?..

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

How many types of linked lists what are they? How many types of data structures?..

Answer / c manojkumar

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

How many types of linked lists what are they? How many types of data structures?..

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

How many types of linked lists what are they? How many types of data structures?..

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

How many types of linked lists what are they? How many types of data structures?..

Answer / phom sophany

how namy type of lists what are they?

Is This Answer Correct ?    0 Yes 0 No

How many types of linked lists what are they? How many types of data structures?..

Answer / gaurav s

Not a single person mentioned generalized linked list?

Is This Answer Correct ?    1 Yes 2 No

How many types of linked lists what are they? How many types of data structures?..

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

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


how to swap four numbers without using fifth variable?

2 Answers  


What are the main characteristics of c language describe the structure of ac program?

0 Answers  


Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.

0 Answers  


Explain is it better to bitshift a value than to multiply by 2?

0 Answers  






Can you mix old-style and new-style function syntax?

0 Answers  


what is difference between array and structure?

44 Answers   College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,


What are the three constants used in c?

0 Answers  


The OS is a program that uses various data structures. Like all programs in execution, you can determine the performance and other behavior of the OS by inspecting its state - the values stored in its data structures. In this part of the assignment, we study some aspects of the organization and behavior of a Linux system by observing values of kernel data structures exposed through the /proc virtual file system. The /proc virtual file system: Linux uses the /proc file system to collect information from kernel data structures. The /proc implementation provided with Linux can read many different kernel data structures. If you cd to /proc on a Linux machine, you will see a number of files and directories at that location. Files in this directory subtree each corresponds to some kernel data structure. The subdirectories with numeric names contain virtual files with information about the process whose process ID is the same as the directory name. Files in /proc can be read like ordinary ASCII files. You can open each file and read it using library routines such as fgets() or fscanf(). The proc (5) manual page explains the virtual files and their content available through the /proc file system. Requirements in detail: In this part, you are asked to write a program to report the behavior of the Linux kernel. Your program should run in two different versions. The default version should print the following values on stdout: • Processor type • Kernel version • The amount of memory configured into this computer • Amount of time since the system was last booted A second version of the program should run continuously and print lists of the following dynamic values (each value in the lists is the average over a specified interval): • The percentage of time the processor(s) spend in user mode, system mode, and the percentage of time the processor(s) are idle • The amount and percentage of available (or free) memory • The rate (number of sectors per second) of disk read/write in the system • The rate (number per second) of context switches in the kernel • The rate (number per second) of process creations in the system If your program (compiled executable) is called proc_parse, running it without any parameter should print out information required for the first version. Running it with two parameters "proc_parse <read_rate> <printout_rate>" should print out information required for the second version. read_rate represents the time interval between two consecutive reads on the /proc file system. printout_rate indicates the time interval over which the average values should be calculated. Both read_rate and printout_rate are in seconds. For instance, proc_parse 2 60 should read kernel data structures once every two seconds. It should then print out averaged kernel statistics once a minute (average of 30 samples). The second version of your program doesn't need to terminate.

0 Answers   Cognos,


Is it cc or c in a letter?

0 Answers  


What is the difference between void main() and void main (void) give example programme?

0 Answers  


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

0 Answers   Gamesa, Satyam,


Categories