INTRODUCTION TO DATA STRUCTURES
DATA TYPE :
Data type of a variable is the set of values that the variable may assume.
Basic Data Types in C :
int , char , float , double
Basic Data Types in PASCAL :
integer , real , char , boolean
ABSTRACT DATA TYPE :
An ADT is a set of elements with a collection of well defined operations.
1)The operations can take operands from not only the instances of the ADT but other types of operands or instances of other ADTs.
2)Similarly results need not be instances of the ADT.
3)At least one operand or the result is of the ADT type in question.
Object Oriented languages such as C++ and Java provide explicite support for expressing ADTs by means of Classes.
DATA STRUCTURE :
A Data Structure is an implementation of an ADT.That is it is a translation of ADT into statements of a programming language.It consists of
1)The declarations that define a variable to be of that ADT type.
2)The operations defined on the ADT(using procedures of the programming language).
An ADT implementation chooses a data structure to represent the ADT.
Each data structure is built up from the basic data types of the underlying programming language using the available data structuring facilities , such as
arrays ,records (structures in C) , pointers , files , sets , etc.
Example:
A ” Queue ” is an abstract data type which can be defined as a sequence of elements with operations such as ENQUEUE(x,Q),DEQUEUE(Q) .
This can be implemented using data structures such as
1)Array
2)Singly linked list
3)Doubly linked list
4)Circular array
Software Projects will be developed using these technologies by
RCL Intelligent Systems
chavakiran said
cool
will visit again.
umar ali said
plz send me coad
delete a node from binary search tree
Muhammad Ajmal Malik said
: Provide a List ADT that keep record of student’s data. Interface of this ADT is provided below.
class StudentList{
public:
StudentList(int s); //create a list of size s
bool isEmpty(); //return true if list is empty and false otherwise.
bool isFull(); //return true if list is full and false otherwise.
void insert(StudentInfo s); //insert record s in the list. If list is full,
double the list size.
int find(int rn); //find record of student having roll_no rn in the list
and return its index if found, or return -1 if not found.
bool remove(int rn); //delete record of student having roll_no rn from list and return true if deleted, or return false if record not found in the list.
void display(); //display all records of students in the list from beginning to end
private:
……………
};
struct StudentInfo{
int roll_no;
string name;
float cgpa;
};
anurag said
plz help me , plz tell me how to open an audio file in c++ and also how to compress it 2:1 or more
srinivasareddy said
all the information about the c++ data structures sucha as linked list and stack queue infixtopostfix simulating pointers
eyob kefelegn said
please answer the question
saikiran said
this is a good site for beginners indeed
will see u again
binyam said
i want to write on the operations of arrays a small programm (using c++)like to insert , delete,swap,search datas that a user enters .
prachi desai said
i also want to do the same so please someone can help me out…… please do help me i am waiting….. thank you….
Omveer Yadav said
*Program to insert an element in the array.
#include
#include
void main()
{ clrscr();
int a[20],n,i,k,item=0;
cout<<"Enter size of array "<>n;
cout<<"Enter array element"<<endl;
for(i=0;i>a[i];
cout<>item;
cout<>k;
for(i=n-1;i>=k;i–)
a[i+1]=a[i];
a[k]=item;
n=n+1;
for(i=0;i<n;i++)
cout<<a[i]<<endl;
getch();
Ravi said
Very useful & informative on DS…
1. Write a C program to simulate the working of a circular queue of integers using an array. Provide the following operations.
a) Insert
b) Delete
c) Display
5. Write a program to find minimum cost spanning tree of a given undirected graph using Prim’s
Can you help me by sending this program ??
vimala devi said
ok thank you
vicky said
hai i have doubt in data tructure…………..
so…….
please help me sen me your mail id
hemanth said
thanks for helping me to prepare for DS exam
rikin said
i m ele & commu eng student.pls send me camoas interview question with ans
rikin said
pls send campas intreview question with ans
mrlxlgmkif said
Hello! Good Site! Thanks you! zfzjcqlxpac
DubSlonS said
ford car
casinosfreebonusesv said
deposit free bonus casino
see to signature…
freeeeringtones said
popular free ringtones
http://www.thehotstop.info
signature…
amandeep said
i want a program for addition and multiplication of two sparse matrices using singly linked list implementation
rocky said
The site is great…keep going jumbo!
chandra said
ok thanq you
chandra said
ok than you
mary said
hello
can i have some questio about data structures.
mary said
plese send it to my gmail.
m.javadifar@gmail.com
Meer said
i wanna do a program for 8 king on chess board….evry king moves but no one can cut otherz….how can i do that?plzz send it to my hotmail.
Melaku Girma said
Please I need depth limited search source code in C++ in AI route finding problem
JAGAN said
I WANT A PROGRAM TO PERFORM CONTINUELY COUNT 6 NUMBERS CIRCULE LINKED LIST IN C++ PROGRAM.. SEND MY ID
sanjay chauhan said
i want good book of data structure( free of coast)
janapati said
the code for prefix to postfix notations….
Jack said
DOes N e Body implemented Dijkstra using Graphics!
Ravi Chandra.K said
i want the concept of simulating pointers in cpp using cpp concept as soon as possible as i have to prepare for my exam
Usmi said
i want a good book of data structure on C sharp(c#)
sachin said
please your email account
seand my account
my beast book seand your account
umar ali said
plz send me
swamidas said
plz send me Data Structure on C book for- swamidas888@gmail.com
Usmi said
free of cost n send me on my id usman_akbar516@hotmail.com….please
mukhtar said
i need code implementaion in C++ of AVL tree and Dijkstra i hope u will do that for me with best luck
princy said
kool… learnt many new things…
arun krishna said
can anyone plz send me c++ codes for djikstra
vidhya said
hey frnds cud u plz tell me the code to reverse a string using recursion and without using temporary variables
Sruthi said
thanks for this material
it is very very useful for the starters of DS but could be even more clear than this
sagar said
It is very Usful for DS&A subject.
in which there is very simple understand the algo. of any DS program.
Thank you very much.
K.Chandra obul reddy said
Hi!I am unable to trace programs in ds which includes dynamic memory allocation as done thru—->{p=new node();}.what happens if node *link is declared in a class.how 2 declare classes without objects(if available)? & updating lptr and rptrs in double linked and single linked lists.How destructor will be invoked when objects are deleted .Plz Xplain about static variables in c++.I here by inform u that i am u’r svu’s friend kok’s brother (chandu 4m GPREC).If recommendations are not granted then u do as u’r wish.(its just a joke )..waiting 4 u’r reply.bye
rangira ernest said
yes,i aggree your topics so i want to be one of the member in order to give me ideas to this course.
thanks for your partens.
manu said
very good
onyemaechi said
please i need the complete source code of the simulation dijkstra algorithm using matlab, c language, qbasic. this is to help me in school
s.yasodha said
i want routine for multiplication of two linked list
shreya said
could sm1 plz write a program on linked and indexed allocation soon.
ashish said
great work dude!
outside,there is a serius dearth of good material on ds.
keep doing the good work.
samer said
hai iam mechanical student of RR ihave a paper pending for data structure through C plz help me give some easy tips to clear that paper.what should i read.sent me some important questions
chithra said
i want to implementation of ADT using c++
desi said
i need sparse matrix program using one dimensional array in c language. can you help me?
gunalan said
hi I am very new to data structure.
can u give me the name of some books about data structure?
swamidas said
1. Data Structures using C and C++, Yedidyah Langsam, A.M. Tenembaum
2. Data Structure and algorithms in C, Allen Weiss
3. Introduction to Algorithms, Coreman
(if u have this books plz send me-swamidas888@gmail.com)
tanya said
yaar can u tell me which is the best book for data stu. through c++???
pavithra said
i need example for merge sort
Lakhwinder said
i need the struture of one node of linkedlist representing Address Book.Write a module to print alternative name from
Address Book.
picklu said
I WANT TO LEARN THE LINK LIST.
rose said
i want to have examples of codes in accepting a string, sorting it and deleting in array and linked list using c++
vimal kumar said
this is a good web page , gives you a fuul knowledge of data structure
Ikram Ahmed Khan said
it looks good site for beginners
girish said
its better u give about the programs also
girish said
not only theory practical is also needed so better give the programming way etc.,
Sangeeta Kumari said
I need a good book of Data Structure Through C Language containing programs and the changing of variable during program with the help of diagram.
Please send if on my e-mail id
sree said
I want need DS through c++ material, if anybody plz send a link to me
Abhishek said
i need material of DS through C++ …
Plz send to mail or just link .if any one knows
ankush said
same
kavitha said
nice reading
kv said
i want data structure with cpp meterial plz send me my mail id plz
shilpa said
Simple programs on binary trees in datastructures
parikshit said
Hey buddy m a beginner in DS .prep for my second sem exams .i want DS material which is easy for me to understand …Plz help me out …
…
parikshit said
Sorry i forgot to mention …i want DS using C …
Alexwebmaster said
Hello webmaster
I would like to share with you a link to your site
write me here preonrelt@mail.ru
Ali said
Please Please tell me Some thing About Sorting Techniques with a Algorithm in c++.
Please
NESHANET SHMELS said
I m neshanet shmels i dt know to write a program the attack of my heart through time sequencialy
Ali said
Please tell me Sorting Techniques atleast 6 to 7.
It is Emergency.
plz notify me in my E-mail address g_ali124@yahoo.com
thanx
Ali said
I also want to ask tha which one is the fasted sorting technique?
Anurag.mac said
hai everyone, plz mail me yur queries of ds
Anurag.mac said
my mail id is anurag.malaviya86@gmail.com
Pavan said
Hi dude its pavan here e-id pavankumarp89@gmail.com i am in final be suggest mea good book for interview for C,C++,Ds,DBMS,OS and CN
swanna said
hiii
send me C,C++,Ds,DBMS,OS and CN interview questions
srinivas mipgs said
dis site is very usefull 4 all cs students…………………
srinivas said
dis is excellent site 4 students…………..
usman said
nice web
Nikhil said
good pls help me
ramola said
yar bilkul e phudu hai…………dnt read frm dis………. its a bib bhenchodi book…
abhilekh said
sir,i just want to know what are the best books for learning data structure through c language for beginners
vinityadav said
i need material of DS through C++ …
Plz send to mail or just link .if any one knows
vinityadav said
i need to material data structure in c++
vinityadav said
i need to a material of data strcture using c++
vinityadav said
what is storage classes?
jatin said
which book is suitable for begginers
ashutosh singh said
what is tree
ayushi said
data structures using c- yashwant kanetkar
Angelina said
I found the site quite interesting; could you pls explain about the working of heap sort and merge sort?
surekha said
how to solve the infix to postfix convertion
LarryXA said
Thx, this has definitely made my day!
_______________________
wtf
anand said
i want storage of sparsity matrix in cprogram plz help me
menuka99 said
good sight
sonalbansal said
please provide me with all programs in data structure in c programming
sachin said
my email account is oll progran in DS programing
seand your email account
shrawan kumar said
sir help me please…………
noha said
plz i need a help in ma project about linked list , queue and stack (push , pop, top) also including
1- delete from the link
2-add to the link at the top
can i send u the project on mail its about a car agency
plz reply
nidhi khare said
sir i wanna know sum gud books for data structure using c so pls help me out
sachin said
nerale prakashian
and taxmax book is veary beast
sukanya said
i need program for warshall algorithm using c………………..with more explanations………….plz send to my id……..
Aiysha said
i need a program .
6. write a c++ program to implement graph using adjacency matrix and perform the following operations
b)breadth first search
karuna said
i want sorting techiniques of heap sort with ex and program,merge ex and program,radix ,insertion, selection,tree,
karuna said
i want soriting with example and also programs , different types sortings i want urgently plz send me via my mail id
karuna said
i want how to add constraint in exsiting table in one column but it had alredy foreign key
Sunil said
I am an 2nd yaer diploma engg. student can u please tell me what should i study for my Data Structure exams please……….
bobiksuget said
Hi mans. I am only I start to study c program examples.
I have visited a site http://program.v3host.be/?cat=204.
Much to our regret I have very little found out about it.
You can probably tell to me a good site about c program software.
I will be very glad.
Thansk
Doris A. Keyes said
Hey very nice blog!! Man .. Attractive .. Astonishing .. I will bookmark your blog and take the feeds also…
praveena said
can you pls send me the program in c++ to Implement Kosaraju’s algorithm for finding the strongly connected components of a directed grpah using adjacency list to represent the directed graph
Vinod said
will give you bod(13/2/10)
bhavya said
i want a program of sorting of doubly linked list and i want a program to create a table data structure please send it quickly i need your help
Harendra sharma said
plzz tell me how can be stack implementation using linked list data structure…..
Darshan said
Hi if u hv e-bbok of Data structure through c. sen on my e-mail .
thanx
Shivraj said
plz help me about the Huffman Algorithm
zari said
#include
#include
#include
struct node{
int data;
node *next;
};
void main(){
clrscr();
int i,get,hold;
char opt=’T';
node *h,*p,*q,*l,*c,*d,*r;
cout<<"enter data"<>h->data;
q=h;
h->next=NULL;
while((opt==’T')||(opt==’t')){
cout<<"if you want to create more nodes than press t otherwise press any key…"<>opt;
if((opt==’T')||(opt==’t')){
p=new node;
cout<<"enter data"<>p->data;
p->next=NULL;
q->next=p;
q=p;
} }
cout<<endl<<endl<<"link list is"<next){ //display nodes
cout<<endl<data<data=q->data;
l=d;
for(; p!=h;){
for(q=h; q->next!=p; ){
q=q->next;
}
p=q;
c=new node;
c->data=q->data;
c->next=NULL;
l->next=c;
l=c;
}
cout<<endl<<endl<<"link list of copy is"<next){ //display nodes
cout<<endl<data<<endl;
}
getch();
}
what is the problem in thiz program plzzzzzzzzzzzz inform me today……
sivapsg25 said
INSERT THE HEADER FILES DUDE
pramod said
new is not the keyword to allocate meemory that is malloc.that is used in .NET environment………
sandeep rawat said
hi,
use malloc function and use #include header file because new node will be created after giveing to it memory
chandni dhawan said
i want help in my project on “address book”in data structures. i need its algorithm
chandni dhawan said
plz help me in my term paper for data structures”address book” i need algorithm of address book.
nandani sinha said
thanks ..
Munir Hossain said
How can integer insert, delete and search in data stractured in programming c code. Pls advice.
Munir
Felton Serville said
I don’t agree with everything in this blog, but you do make some very good points. Im very interested in this subject and I myself do alot of research as well. Either way it was a well thoughtout and nice read so I figured I would leave you a comment. Feel free to check out my website sometime and let me know what you think.
Subroto said
I want to know the brif drescreption with code how a function overload?
Subroto said
Plz give me example of binary search tree in c++ with algorithem.
MEET SOLANKI said
PLEASE INTRODUCE WITH THE C++ CODING FOR GAME OF “CHESS” WITH WHITE(1KING ,1QUEEN,8PAUN. )
& BLACK (1KING ,1QUEEN,8PAUN. ) WITH GRAPHICAL REPRESANTION.
bhatathi.c said
i want to viva questions on data structures and operating system
lak18 said
.i need a program..tower of hanoi..using stack and queue..
lak18 said
could u help me???please..
Anjum said
i need c programs on stack,queue and linked list
Vikas Acharya said
Please send me free ebooks of data structure in c, vb 6.0, c
++, vb.net, c#.net etc.
shobana said
send me a simple program using basic concept of oops in c++
sivapsg25 said
pls send me simple source codes for the following programs….
1.BINARY SEARCH FOR STRINGS USING C …
2.FINDING A WORD IN A PROGRAM USING C…
3.ADDITION OF TWO SPARSE MATRIX USING C….
4.IMPLEMENTATION OF TWO STACKS IN AN SINGLE ARRAY….
sivapsg25 said
pls send me a ebook which consists of all programs in data structures with c…..
if u have pls mail to this id.. (siva.madurai@yahoo.co.in)
pls someone help me im facing lots of problems with data structures……
Shivraj said
I need help about searching algorithms
kaaviya said
I need to know about the concept used in linked list as soon as possible
Aparna said
Hi i need to get the workings of authour Sudharshan on data structures using C language.
Sowmya said
Hi m feeling very difficult to understand data structure using c++ pls send me notes and some programs pls
Prashant said
I want datastuctur in c++ book
N.Mnaikandan said
Hi, i am an B.SC (IT)1st year student. i want data structure using c short notes. pls send me my mail id ya
Puspad sharma said
Good
sivapakkiam said
hello sir,
i am msc cs student.what is the difference between sequencial search and binary search?
ayushi said
in sequential searching can be done to a sorted n unsorted array, both!..
but the binary search can only be done when the array in in sorted manner..
Puspad sharma said
best website for begineers.
avijit said
please send me the TREE ALGORITHM
nageshwar said
i want qadt and stack adt prodram plzzzzzzzzzzzzzzzzzz
himanshu said
wats best book of data structure using c&c++
ayushi said
data structure using c- yashwant kanetkar..
or u may prefer ds. baluja or dilip sultania is also gud..
well… u will find the yashwant kanetkar’s book better 2 undrstnd the concepts…
for algos…ds. baluja..
komal rachna said
please send me the basic concepts of circular linked list
shrawan kumar said
sir i am a very week student of bca…….sir please help me my dear sir……..mera problem h ki mujhe main subject ka jo language hota h jaise c.c++,ds using c…….etc r language,bahut vast lagta hai hume…….sir kya aap mera help kr sakte h……..please sir …….i am requested to u my dear sirji………..aapke pas me bahut idea h sir aap meri madad kro n please sir……..bye takecare & good n9 my dear sir………..
Puspad sharma said
It’s helps student to clear doubts relating D.S based on C and C++.
ivanosky said
es muy buena la informacion dime
cual es la diferencia de cola en lenguaje c
Jeabbaclegady said
I’m just going to post my hello to this. Hi I am Mike. I research about Bodybuilding I’ll be checking out more of ds4beginners.wordpress.com http://pushbuttonmoneybonus.net/push-button-money-bonus.gif
mira said
I m a student of A-level . i have already completed my 5 modules. i m very week in progarming.my next paper is data structure through c++(A6-r4). my c language conception is not good. Actually i dont understand the programing logic.pls help me for preparing my module.my conception is very bad about link list, array pls help me. thank u.
sandeep rawat said
hi Mira
Iam a fresher and done my b.tech. I will help u because i am intrested in programming (in c, c++) so, ask any thing in c.
Thanks,
sandeep
deepthy babu said
iam a beginner in DS i have an exam in the coming month so i need to prepare for will u plz help by giving the main points…
Ilyas afridi said
i am the student of DIT.
please send me the basic information about C++ and also send me some basic programs in C++.
i will be very thankfull to you
CodeMaster said
hey guy i want a simple program of implementation of two way link list plzzzzzzzzzzzzz give me fast on my e -mail
Ashish jha said
verync site
thnx
rakesh sahoo said
please give me this note to my email
sandeep rawat said
hi all,
any one who is visiting this site need help about programming then just leave Q to me …..k
Thanks,
sandeep
muskan said
i want c last topic searching sorting help me how.
to do
thanks
rajeshwar said
pls send trepizodal program to my mail id
linux commands said
Wow, marvelous blog layout! How long have you been blogging for? you made blogging look easy. The overall look of your website is excellent, as well as the content!
Gary Smith said
SEO| Internet Marketing| Website Designing
Hi
We are leading SEO service provider and web Development Company. We are expert in PHP,.NET, and many open sources like Joomla, Drupal, WordPress, Oscommerse ,Zencart and Blog Management. We offer best of quality work to our clients at the lowest possible prices. We can quickly promote your website.
We can place your website on top of the Natural Listings on Google, Yahoo and MSN. We do not use “”link farms”" or “”black hat”" methods that Google and the other search engines frown upon and can use to de-list or ban your site. . Price is never a constraint with us because we take pride in handling challenging work.
We would be happy to send you best fit proposal for web development and designing and if you have a SEO requirement we will send you a proposal using the top search phrases for your area of expertise.
In order for us to respond to your request for information, please include your company’s website address (mandatory) and /or phone number.
Sincerely,
Gary Smith
Garyinternetmarketing@gmail.com
COMPLETE INTERNET MARKETING SOLUTION
SEO – Link Building – Copyright – Web Designing – PHP
mahender reddy said
Suppose that some application requires using two stacks whose elements are of the same type. A natural storage structure of such a two-stack data type would consist of two arrays and two top pointers. Explain why this may not be a spacewise efficient implementation.
mahender reddy said
Using the basic queue and stack operationns, write an algorithm to reverse the elemens in a queue
mahender reddy said
Assume tht ‘Stack’ is the class described in this section with ‘StackType’ set to int and STACK_CAPACITY or myCapacity set to 5. Give the value of ‘myTop’ and the contents of the array referred to by ‘myArray’ in the Stack s afer the code segment is executed, or indicate why an error occurs.
Stack s;
s.push(1);
s.push(2);
s.push(3);
s.pop();
s.push(4);
s.push(5);
s.pop();
s.pop();
ainul said
1. Algorithm to compute node in a link list
2. Algorithm to calculate the average value of the real numbers in a link list
3. Algorithm to add nodes at the end of a link list
4. Algorithm to determine if any nodes that are not arranged in ascending (non-decreasing order) in a link list.
5. Algorithm for finding an item in the link list.
6. Algorithm to remove a node in a link list.
- can give me a coding..coz i no understand how to write the coding
gunjan chaturvedi said
i want to learn about the algorithms..and the problems related to tower of hanoi…
Niks Sharma said
please give me a program for data structure for creation ,insertion and deletion linked list ,node and display?
reply me today………..
anburaj said
circular linked list
Anil Nagane said
good ,i feel very good
narayan gupta said
please tell me about data structure
Abdul Malik said
Hey,can anyone send me a program or an algorithm for converting an infix to postfix on my email.
thanks.
anil said
anil
hello any one can tel me which book is best for data structure
Manika said
data structure through C by G.S Baluga is a gud book
ayushi said
data structure using c- yashwant kanetkar..
or u may prefer ds. baluja or dilip sultania is also gud..
well… u will find the yashwant kanetkar’s book better 2 undrstnd the concepts…
for algos…ds. baluja..
Dheeraj Gandhi said
can we convert a postfix expression to an infix expression??
ayushi said
yup!… using stack
Manika said
plz tell me that how a stack is implemented using linked list in detail .i m doing data structure through C.
plz reply
neha said
pls send me algos of multiple stack
Deejay Colin said
SEO| Internet Marketing| Website Designing
Hi,
We can fairly quickly promote your website to the top of the search rankings with no long term contracts!
We can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings then anyone else and we can prove it. We do not use “link farms” or “black hat” methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets. Our prices are less then half of what other companies charge.
We would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.
In order for us to respond to your request for information, please include your company’s website address (mandatory) and /or phone number.
Sincerely,
Deejay Colin
deejayinternetmarketing@gmail.com
COMPLETE INTERNET MARKETING SOLUTION
SEO – Link Building – Copyright – Web Designing – PHP
prachi desai said
i myself prachi desai and have the exam of data structure management soon so i request the users to help me soon….. i want to learn how to write program using algorithms….. i can understand the algorithms easily but don’t understand how to do programming using algorithms……the topics included in my syllabus are arrays, stacks and queue, linked list….. and the basic introduction to data structure…….
i hope for the reply soon…… please help me out…… its my request to the user of this site…… thank you……
willy said
Vinod,
Have you ever created code for the shortest path bottleneck algorithm?
Best,
Wil
anshu kumar said
this site is vr good
SALIM said
CREAT A PROGRRAM TO IMPLIMENT OF DBMS SET OPERATION(UNION,INTERSECT,EXCEPT)IN OOP
SALIM said
CREAT A PROGRRAM TO IMPLIMENT OF DBMS SET OPERATION(UNION,INTERSECT,EXCEPT)IN OOP
TODAY OR TOMORRO
SALIM said
CREAT A PROGRRAM TO IMPLIMENT OF DBMS SET OPERATION(UNION,INTERSECT,EXCEPT)IN OOP
TODAY OR TOMORRO
Reply PLZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ
swamidas said
plz send me this books-swamidas888@gmail.com
1. Data Structures using C and C++, Yedidyah Langsam, A.M. Tenembaum
2. Data Structure and algorithms in C, Allen Weiss
3. Introduction to Algorithms, Coreman
Levis said
I want to write a program using c that will be use for my company financial purpose. Will someone please help me with the coding?
Thanks
salem kosemani said
this sure is the best, pls i need a book on data structure with C or on C, my email is salemsky95@gmail.com. Thanks
ayushi said
data structure using c- yashwant kanetkar..
vishal said
can any one send me the ebook of data structure with c on my email id
vishallalwani.21@rediffmail.com
ravi said
hello!!
i am intrested in learning data structures.. i am new to this subject although i know abt C.. could anyone help me in posting a material or illustrative so that i can learn data stuctures without anyones help..
plz plz plz!!
jasmine said
is it compulsory to write adjacency matrix to find minimum spanning tree using prims algorithm in data structures
ravi said
i want data structure notes of linked lists according to b.tech 2nd year syllabus
Yazhini said
I want algorithm steps for M.tech data structures syllabus model of labaratory
Yazhini said
I want algorithms steps of M.tech data structures labaratory programs steps..
Yazhini said
I want M.tech syllabus of data structures labarotry programs steps…
manoj said
plz help me for to built up programs :data structure using c and c++
adi khan said
QUESTION:-
Implement the course registration using the concept of single linked list.
The data of students of a particular semester will be maintained in one linked list. Each node of the student linked list will point to another linked list of courses in which that particular student will get registered.
The menu of the program should allow the following operations:
1.Creation of linked list of students (Name, Reg.No and Batch No).
2.Creation of linked list of offered courses.
3.The function to register students in particular courses (Course Name and Course code).
4.exat
Allow the facility to view:
The courses of only one student
The courses of all the students
Students in one particular course.
shiv kushwah said
help me to make a program of link list when insertion after and before a given element of the link list
shiv kushwah said
pls give me a program of link list in data structure using c++ for the insertion of element after and before a given element in the link list
richa said
need a program for stack overflow & underflow
vishal lalwani said
use the book for that kind of topics in books that is clearly defined
richa said
need a graph representation: adjacency matrix, adjacency list, adjacency multi list representation.
vishal said
hey i need the notes about data structures with c++………….
which website or book should i refer too??????????????
vishal lalwani said
what your qualification
sadhna said
Hi, guys I am preparing for c-dac entrance exam and don’t know data structures, please help me out and tell which book will be best for ds to start with as i have exam on 29th of this month, if anyone knows please tell me important topics to prepare for c-dac…
my id is sadhnasharma89@gmail.com
please help me guys….
shenba said
plz send me the program for multipkication of sparse matrix in c++ code
Aqib Malik said
I am not known of any programming language.I have got data structure in our course using c. Any one who clears my concept…….. pzl plz plz plz rep
vishal lalwani said
tell me your prb to me i am working as a faculty of programming
sanjaya said
can anyone tell me the link to get an e book of data structure using c++
sanjaya said
pls help me guys……………………
vishal lalwani said
hello sanjaya i don’t have link but i can mail you the book of data structure but in that book all the programs are shown with example but without theory
subhani said
how to keep student records(index number,registration number and others) using array based stack in c programming
subhani said
Pls help me guys
vishal lalwani said
i dont have prg of this but i can help you
a simple stack then modify its structure
Swarup Das said
plz tell me about data structure
vishal lalwani said
you have to study data structure this is not a question