Pointers and Lists

Discussion in 'C' started by bricemfr, Dec 21, 2011.

Thread Status:
Not open for further replies.
  1. bricemfr

    bricemfr New Member

    Joined:
    Dec 20, 2011
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    Hello, Im very very new at C++, I have this assignment that I can't figure out, if anybody could me, I'll be very grateful.


    Create a List class with the following interface (at a minimum):
    bool addItem(Node&) //add an item to the list, return true on success
    Node* getLargestNode( ) //return the largest value stored in the list
    In addition, create a Node class that stores an integer. The Nodes will be linked together to form the List. Your driver program should accept ten integers from the console, create new Nodes, store them in the list, then display the largest value in the list.
    You'll end up with at least two objects: the List object, and the Node object. You’ll want to think about what a node is and what a list is, and what behaviors each should have. For example, the List shouldn’t store the highest integer in the list…instead it should ask each Node its value, and if the Node contains the highest value the List has seen, it should store a pointer to that Node.
    getLargestNode( ) should iterate the list…start at the top and look at each node in turn until it reaches the bottom of the list. It returns a Node, so you can use the method in main( ) to find and print the value of the largest node.

    Thank you
     
  2. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    You already have the thread here - Pointers and Lists

    Thread closed with an infraction.
     
Thread Status:
Not open for further replies.

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice