Data Structures through C & C++ for beginners

If the code doesn't work, please replace the single quotes and double quotes(Actually these are not proper single and double quotes) in the code with single quotes and double quotes using your keyboard..

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

228 Responses to “INTRODUCTION TO DATA STRUCTURES”

  1. chavakiran said

    cool

    will visit again.

    • umar ali said

      plz send me coad
      delete a node from binary search tree

      • : 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;
        };

  2. 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

  3. all the information about the c++ data structures sucha as linked list and stack queue infixtopostfix simulating pointers

  4. saikiran said

    this is a good site for beginners indeed

    will see u again

  5. 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();

  6. 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 ??

  7. vimala devi said

    ok thank you

  8. hemanth said

    thanks for helping me to prepare for DS exam

  9. rikin said

    i m ele & commu eng student.pls send me camoas interview question with ans

  10. rikin said

    pls send campas intreview question with ans

  11. mrlxlgmkif said

    Hello! Good Site! Thanks you! zfzjcqlxpac

  12. DubSlonS said

    ford car

  13. deposit free bonus casino
    see to signature…

  14. popular free ringtones

    http://www.thehotstop.info

    signature…

  15. amandeep said

    i want a program for addition and multiplication of two sparse matrices using singly linked list implementation

  16. rocky said

    The site is great…keep going jumbo!

  17. chandra said

    ok thanq you

  18. chandra said

    ok than you

  19. mary said

    hello
    can i have some questio about data structures.

  20. mary said

    plese send it to my gmail.
    m.javadifar@gmail.com

  21. 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.

  22. Melaku Girma said

    Please I need depth limited search source code in C++ in AI route finding problem

  23. JAGAN said

    I WANT A PROGRAM TO PERFORM CONTINUELY COUNT 6 NUMBERS CIRCULE LINKED LIST IN C++ PROGRAM.. SEND MY ID

  24. sanjay chauhan said

    i want good book of data structure( free of coast)

  25. janapati said

    the code for prefix to postfix notations….

  26. Jack said

    DOes N e Body implemented Dijkstra using Graphics!

  27. 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

  28. Usmi said

    i want a good book of data structure on C sharp(c#)

  29. Usmi said

    free of cost n send me on my id usman_akbar516@hotmail.com….please

  30. mukhtar said

    i need code implementaion in C++ of AVL tree and Dijkstra i hope u will do that for me with best luck

  31. princy said

    kool… learnt many new things…

  32. arun krishna said

    can anyone plz send me c++ codes for djikstra

  33. vidhya said

    hey frnds cud u plz tell me the code to reverse a string using recursion and without using temporary variables

  34. 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.

  35. 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.

  36. manu said

    very good

  37. 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

  38. s.yasodha said

    i want routine for multiplication of two linked list

  39. shreya said

    could sm1 plz write a program on linked and indexed allocation soon.

  40. ashish said

    great work dude!
    outside,there is a serius dearth of good material on ds.
    keep doing the good work.

  41. 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

  42. chithra said

    i want to implementation of ADT using c++

  43. desi said

    i need sparse matrix program using one dimensional array in c language. can you help me?

  44. gunalan said

    hi I am very new to data structure.
    can u give me the name of some books about data structure?

  45. tanya said

    yaar can u tell me which is the best book for data stu. through c++???

  46. pavithra said

    i need example for merge sort

  47. Lakhwinder said

    i need the struture of one node of linkedlist representing Address Book.Write a module to print alternative name from
    Address Book.

  48. picklu said

    I WANT TO LEARN THE LINK LIST.

  49. rose said

    i want to have examples of codes in accepting a string, sorting it and deleting in array and linked list using c++

  50. this is a good web page , gives you a fuul knowledge of data structure

  51. Ikram Ahmed Khan said

    it looks good site for beginners

  52. girish said

    its better u give about the programs also

  53. girish said

    not only theory practical is also needed so better give the programming way etc.,

  54. 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

  55. sree said

    I want need DS through c++ material, if anybody plz send a link to me

  56. Abhishek said

    i need material of DS through C++ …
    Plz send to mail or just link .if any one knows

  57. kavitha said

    nice reading

  58. shilpa said

    Simple programs on binary trees in datastructures

  59. 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 … :(

  60. parikshit said

    Sorry i forgot to mention …i want DS using C …

  61. Alexwebmaster said

    Hello webmaster
    I would like to share with you a link to your site
    write me here preonrelt@mail.ru

  62. Ali said

    Please Please tell me Some thing About Sorting Techniques with a Algorithm in c++.
    Please

  63. 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

  64. Ali said

    I also want to ask tha which one is the fasted sorting technique?

  65. Anurag.mac said

    hai everyone, plz mail me yur queries of ds

  66. Anurag.mac said

    my mail id is anurag.malaviya86@gmail.com

  67. srinivas mipgs said

    dis site is very usefull 4 all cs students…………………

  68. srinivas said

    dis is excellent site 4 students…………..

  69. usman said

    nice web

  70. Nikhil said

    good pls help me

  71. ramola said

    yar bilkul e phudu hai…………dnt read frm dis………. its a bib bhenchodi book…

  72. abhilekh said

    sir,i just want to know what are the best books for learning data structure through c language for beginners

  73. vinityadav said

    i need material of DS through C++ …
    Plz send to mail or just link .if any one knows

  74. vinityadav said

    i need to material data structure in c++

  75. vinityadav said

    i need to a material of data strcture using c++

  76. jatin said

    which book is suitable for begginers

  77. Angelina said

    I found the site quite interesting; could you pls explain about the working of heap sort and merge sort?

  78. surekha said

    how to solve the infix to postfix convertion

  79. LarryXA said

    Thx, this has definitely made my day!

    _______________________
    wtf

  80. anand said

    i want storage of sparsity matrix in cprogram plz help me

  81. menuka99 said

    good sight

  82. please provide me with all programs in data structure in c programming

  83. 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

  84. nidhi khare said

    sir i wanna know sum gud books for data structure using c so pls help me out

  85. sukanya said

    i need program for warshall algorithm using c………………..with more explanations………….plz send to my id……..

  86. 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

  87. karuna said

    i want sorting techiniques of heap sort with ex and program,merge ex and program,radix ,insertion, selection,tree,

  88. karuna said

    i want soriting with example and also programs , different types sortings i want urgently plz send me via my mail id

  89. karuna said

    i want how to add constraint in exsiting table in one column but it had alredy foreign key

  90. 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……….

  91. 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

  92. Hey very nice blog!! Man .. Attractive .. Astonishing .. I will bookmark your blog and take the feeds also…

  93. 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

  94. 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

  95. Harendra sharma said

    plzz tell me how can be stack implementation using linked list data structure…..

  96. Darshan said

    Hi if u hv e-bbok of Data structure through c. sen on my e-mail .

    thanx

  97. Shivraj said

    plz help me about the Huffman Algorithm

  98. 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……

  99. chandni dhawan said

    i want help in my project on “address book”in data structures. i need its algorithm

  100. plz help me in my term paper for data structures”address book” i need algorithm of address book.

  101. nandani sinha said

    thanks ..

  102. Munir Hossain said

    How can integer insert, delete and search in data stractured in programming c code. Pls advice.

    Munir

  103. 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.

  104. Subroto said

    I want to know the brif drescreption with code how a function overload?

  105. Subroto said

    Plz give me example of binary search tree in c++ with algorithem.

  106. 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.

  107. bhatathi.c said

    i want to viva questions on data structures and operating system

  108. lak18 said

    .i need a program..tower of hanoi..using stack and queue..

  109. lak18 said

    could u help me???please..

  110. Anjum said

    i need c programs on stack,queue and linked list

  111. Vikas Acharya said

    Please send me free ebooks of data structure in c, vb 6.0, c
    ++, vb.net, c#.net etc.

  112. shobana said

    send me a simple program using basic concept of oops in c++

  113. 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….

  114. 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……

  115. Shivraj said

    I need help about searching algorithms

  116. kaaviya said

    I need to know about the concept used in linked list as soon as possible

  117. Aparna said

    Hi i need to get the workings of authour Sudharshan on data structures using C language.

  118. Sowmya said

    Hi m feeling very difficult to understand data structure using c++ pls send me notes and some programs pls

  119. Prashant said

    I want datastuctur in c++ book

  120. 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

  121. Puspad sharma said

    Good

  122. 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..

  123. best website for begineers.

  124. avijit said

    please send me the TREE ALGORITHM

  125. nageshwar said

    i want qadt and stack adt prodram plzzzzzzzzzzzzzzzzzz

  126. 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..

  127. komal rachna said

    please send me the basic concepts of circular linked list

  128. 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………..

  129. Puspad sharma said

    It’s helps student to clear doubts relating D.S based on C and C++.

  130. ivanosky said

    es muy buena la informacion dime
    cual es la diferencia de cola en lenguaje c

  131. 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

  132. 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

  133. 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…

  134. 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

  135. CodeMaster said

    hey guy i want a simple program of implementation of two way link list plzzzzzzzzzzzzz give me fast on my e -mail

  136. Ashish jha said

    verync site
    thnx

  137. rakesh sahoo said

    please give me this note to my email

  138. 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

  139. muskan said

    i want c last topic searching sorting help me how.
    to do
    thanks

  140. rajeshwar said

    pls send trepizodal program to my mail id

  141. 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!

  142. 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

  143. 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.

  144. Using the basic queue and stack operationns, write an algorithm to reverse the elemens in a queue

  145. 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();

  146. 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

  147. gunjan chaturvedi said

    i want to learn about the algorithms..and the problems related to tower of hanoi…

  148. please give me a program for data structure for creation ,insertion and deletion linked list ,node and display?
    reply me today………..

  149. anburaj said

    circular linked list

  150. Anil Nagane said

    good ,i feel very good

  151. please tell me about data structure

  152. Abdul Malik said

    Hey,can anyone send me a program or an algorithm for converting an infix to postfix on my email.
    thanks.

  153. anil said

    anil
    hello any one can tel me which book is best for data structure

  154. can we convert a postfix expression to an infix expression??

  155. 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

  156. neha said

    pls send me algos of multiple stack

  157. 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

  158. 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……

  159. willy said

    Vinod,
    Have you ever created code for the shortest path bottleneck algorithm?
    Best,
    Wil

  160. anshu kumar said

    this site is vr good

  161. SALIM said

    CREAT A PROGRRAM TO IMPLIMENT OF DBMS SET OPERATION(UNION,INTERSECT,EXCEPT)IN OOP

  162. SALIM said

    CREAT A PROGRRAM TO IMPLIMENT OF DBMS SET OPERATION(UNION,INTERSECT,EXCEPT)IN OOP
    TODAY OR TOMORRO

  163. SALIM said

    CREAT A PROGRRAM TO IMPLIMENT OF DBMS SET OPERATION(UNION,INTERSECT,EXCEPT)IN OOP
    TODAY OR TOMORRO

    Reply PLZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ

  164. 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

  165. 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

  166. 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

  167. vishal said

    can any one send me the ebook of data structure with c on my email id
    vishallalwani.21@rediffmail.com

  168. 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!!

  169. jasmine said

    is it compulsory to write adjacency matrix to find minimum spanning tree using prims algorithm in data structures

  170. ravi said

    i want data structure notes of linked lists according to b.tech 2nd year syllabus

  171. Yazhini said

    I want algorithm steps for M.tech data structures syllabus model of labaratory

  172. Yazhini said

    I want algorithms steps of M.tech data structures labaratory programs steps..

  173. Yazhini said

    I want M.tech syllabus of data structures labarotry programs steps…

  174. manoj said

    plz help me for to built up programs :data structure using c and c++

  175. 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.

  176. shiv kushwah said

    help me to make a program of link list when insertion after and before a given element of the link list

  177. 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

  178. richa said

    need a program for stack overflow & underflow

  179. richa said

    need a graph representation: adjacency matrix, adjacency list, adjacency multi list representation.

  180. vishal said

    hey i need the notes about data structures with c++………….
    which website or book should i refer too??????????????

  181. 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….

  182. shenba said

    plz send me the program for multipkication of sparse matrix in c++ code

  183. 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

  184. sanjaya said

    can anyone tell me the link to get an e book of data structure using c++

  185. 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

  186. subhani said

    how to keep student records(index number,registration number and others) using array based stack in c programming

  187. subhani said

    Pls help me guys

  188. Swarup Das said

    plz tell me about data structure

Leave a Reply

Fill in your details below or click an icon to log in:

Gravatar
WordPress.com Logo

Please log in to WordPress.com to post a comment to your blog.

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

 
Follow

Get every new post delivered to your Inbox.

Join 64 other followers