CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Lindley

Search: Search took 0.12 seconds.

  1. Replies
    7
    Views
    11,968

    Re: Alphabetizing a Linked List using Pointers?

    Note that in "real" code, you'd just use std::list rather than coding up your own linked list.

    You should also verify that the behavior is correct with regards to capitalization. There are several...
  2. Replies
    7
    Views
    11,968

    Re: Alphabetizing a Linked List using Pointers?

    Note that the operators will not work for comparing two char arrays, AKA "C-style strings". In that case you'd need to use the functions in <cstring>. C++ string classes such as std::string exist...
  3. Replies
    7
    Views
    11,968

    Re: Alphabetizing a Linked List using Pointers?

    What makes you think you can't use the <, >, etc operators? Assuming those "string" parameters are std::strings and not some homegrown variety, the operators should work fine.
    ...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured