CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Jan 2003
    Location
    The Volunteer State - USA
    Posts
    90

    Question Documentation on std::sort lost ??

    I've looked everywhere I can think of and searched MSDN for "std::sort" but came up empty.
    Anyone know where BIll Gates put the documentation on that fellow?
    Thanks, if you kin help!
    --------------------------------------------
    http://www.volfirst.net/~sirjorj/index.html
    ---------------------------------------------

  2. #2
    Join Date
    Feb 2002
    Posts
    5,757
    Here is one link to MSDN's STL reference.

    http://msdn.microsoft.com/library/de...f_Contents.asp

    Check out my website for other STL links.

    http://www.dslextreme.com/users/kuphryn/links.html

    Kuphryn

  3. #3
    Join Date
    Jan 2003
    Location
    The Volunteer State - USA
    Posts
    90
    wow! This silence is deafening

    Hard to believe that no one here knows the answer.

    Maybe someone at least knows the prototype or has
    had some experience with its use in sorting elements
    of a structure.
    --------------------------------------------
    http://www.volfirst.net/~sirjorj/index.html
    ---------------------------------------------

  4. #4
    Join Date
    Apr 1999
    Posts
    27,449
    By stating that "no one knows the answer" is unfair, to say the least.

    If you did a search on CodeGuru, you would get at least 127 links to threads concerning std::sort. It has been discussed many times here.

    Regards,

    Paul McKenzie

  5. #5
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: Documentation on std::sort lost ??

    Originally posted by Sirjorj
    I've looked everywhere I can think of and searched MSDN for "std::sort" but came up empty.
    Well...I do not know where everywhere is...however the MSDN help for 'sort' can be found here...

  6. #6
    Join Date
    Aug 2000
    Location
    West Virginia
    Posts
    7,725
    I usually prefer to see simple examples :

    for numerous examples of the C++ Standard library :

    http://www.josuttis.com/libbook/toc.html

    in particular:

    sorting ascending and decending:

    http://www.josuttis.com/libbook/algo/sort1.cpp.html

    sort using predicate:

    http://www.josuttis.com/libbook/algo/sort2.cpp.html

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