Search:

Type: Posts; User: DawnOnMe

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    1,787

    well, there's only 21 books in the list. so it's...

    well, there's only 21 books in the list. so it's not that big. but it's basically just sorting it that i have to do...it is just the sort function that adjusts the list so that the found node is at...
  2. Replies
    10
    Views
    1,787

    Thank you. Can you tell me how to properly sort...

    Thank you.
    Can you tell me how to properly sort what is found in this algorithm:


    if(temp->next_ != NULL){
    temp = temp->next_;
    temp->prev_ =...
  3. Replies
    10
    Views
    1,787

    it's comparing one link to another in a big list...

    it's comparing one link to another in a big list of books contained within my doubly linked list
  4. Replies
    10
    Views
    1,787

    Clarification

    The Main link up there is the test program I was referring to.
  5. Replies
    10
    Views
    1,787

    Sorry about that

    The Main

    Up there is the main that it is supposed to iterate through. I was supposed to write the node class:

    A template class called Node, which will be used as the node in a doubly linked...
  6. Replies
    10
    Views
    1,787

    Confused about search function

    I have this search function that has a prototype of:
    Node<T>* search(const T& key, bool (*match)(const T&,const T&));

    where:
    • key is a reference to the thing that we are searching for
    • match...
Results 1 to 6 of 6