Closed Thread
Results 1 to 6 of 6

Thread: Assignment Data Structures Need Help plzzz

  1. #1
    passenger is offline Newbie
    Join Date
    Mar 2009
    Posts
    6
    Rep Power
    0

    Assignment Data Structures Need Help plzzz

    Deadline
    my deadline for the assignment is April 04, 2009

    Uploading instructions
    Your Submission must include:

    1. A working MakeFile (Dev-C++ project File).
    2. All the Source Code(.h and .cpp files) necessary to compile and run your program.
    3. Place all the files in a folder then Zip that folder and Upload it on any free file hosting server like
    megaupload
    RapidShare
    and paste the link in your answer

    Objective
    The objective of this assignment is
    • To give you some practice exercise of Linked List.
    • Make you able to write methods for the linked according to the given requirements

    Assignment

    Your task is to implement a Catalog of Books.
    1. For this first you have to implement Book class The Book class is a simple class to store information about a particular book and it has the following data members:

    o Title of the book (string)
    o Author of the book (string)
    o ISBN of the book (string)
    o Status of the book (bool)
    Write default and parameterized constructors and setters getters for the Book class.

    2. Catalog class is a linked list of Book objects and that can perform the following functionality.
    o Add method to add a book in the Catalog
    o printAllBooks method to print all the books in the Catalog.
    o searchByAuthor method will take author name as an argument and will find a book written by that author.

    o Available method to print all those books that are currently available. If the status of a book is false than it means that book is not available, if the status is true then it means book is available.
    3. Include a main function as follows:
    o Main will create 5 different books and add them in Catalog
    o Print all books present in Catalog linked list.
    o Search a Book by its Author name.
    o Print all the books which are available.

    Hint:
    Make Nodes of Book type and then link them to make Catalog linked list. It means there will be another class between Book and Catalog and that is BookNode class.

    plzzz help me plzzzzzzzzzz

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Join Date
    Jul 2006
    Location
    Amherst, New York, United States
    Posts
    6,277
    Blog Entries
    26
    Rep Power
    20

    Re: Assignment Data Structures Need Help plzzz

    Is there a particular issue you are having trouble with?

  4. #3
    Join Date
    Jul 2006
    Posts
    16,491
    Blog Entries
    75
    Rep Power
    143

    Re: Assignment Data Structures Need Help plzzz

    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  5. #4
    passenger is offline Newbie
    Join Date
    Mar 2009
    Posts
    6
    Rep Power
    0

    Re: Assignment Data Structures Need Help plzzz

    plzzzzzzzzzzz solve my assignment today is my grace day and tomorrow it will be closed

  6. #5
    Join Date
    Jul 2006
    Posts
    16,491
    Blog Entries
    75
    Rep Power
    143

    Re: Assignment Data Structures Need Help plzzz

    You didn't answer our questions. What do you not understand? Where are you stuck? What have you tried so far?
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

  7. #6
    Join Date
    Jul 2006
    Posts
    16,491
    Blog Entries
    75
    Rep Power
    143

    Re: Assignment Data Structures Need Help plzzz

    You haven't shown us what you have so far. We will not do it for you, although I suppose you could give us your teacher's email and we could send the solution directly to your teacher on your behalf.
    Programming is a branch of mathematics.
    My CodeCall Blog | My Personal Blog

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Algorithms and Data Structures help
    By drweni in forum Request Services
    Replies: 1
    Last Post: 05-06-2011, 06:13 AM
  2. Replies: 14
    Last Post: 03-14-2010, 12:42 AM
  3. Efficient use of data structures
    By ahmed in forum General Programming
    Replies: 2
    Last Post: 01-26-2010, 09:20 AM
  4. Data Structures & Algorithms Lectures
    By ahmed in forum C and C++
    Replies: 3
    Last Post: 09-28-2009, 01:01 PM

Tags for this Thread

Bookmarks

Posting Permissions

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