CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    May 2011
    Posts
    0

    Question What are the Real Life Applications of Data Structures.

    Hi.
    I was searching "The Applications of Different Data Structures in Real World". I found some applications but it is like a questions and answer is not given there. Please can someone tell me the answer of this question? I will be thankful to you.
    ---------------The Questions Is------------------------------------------------------------------------------
    You have the following data structures available to you: single and two dimensional arrays, linked-list, doubly linked-list, queue, stack, binary tree, binary search tree, heap, a balanced search tree (such as 2-3, 2-3-4, etc), hash table, and directed and undirected graphs. For each of the following scenarios given below, suggest the most appropriate data structure chosen from the above list.

    a) To store a set of programs which are to be given access to a hard disk according to their priority.
    b) For representing a city region telephone network.
    c) To store a set of fixed key words which are referenced very frequently.
    d) To represent an image in the form of a bitmap.
    e) To implement back functionality in the internet browser.
    f) To store dynamically growing data which is accessed very frequently, based upon a key value.
    g) To implement printer spooler so that jobs can be printed in the order of their arrival.
    h) To record the sequence of all the pages browsed in one session.
    i) To implement the undo function in a text editor.
    j) To store information about the directories and files in a system.


    ------------------- The reference link is here------------------------------------------------
    http://www.grantmoneyadvisor.com/wha...s-t146639.html

  2. #2
    Join Date
    Jan 2006
    Location
    Singapore
    Posts
    6,765

    Re: What are the Real Life Applications of Data Structures.

    You might want to venture your own answers to these questions first.
    C + C++ Compiler: MinGW port of GCC
    Build + Version Control System: SCons + Bazaar

    Look up a C/C++ Reference and learn How To Ask Questions The Smart Way
    Kindly rate my posts if you found them useful

  3. #3
    Join Date
    Sep 2013
    Posts
    1

    Re: What are the Real Life Applications of Data Structures.

    please describe how to implement these applcations of data structures

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured