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

Search:

Type: Posts; User: MMagique

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    4,644

    Re: Newbie question, insertSort algorithm

    Thanks Paul. Your suggestions were very helpful. I now realise that 'T' has to be type iterator and therefore doesn't need to be passed by reference. Code now compiles. Cheers!
  2. Replies
    2
    Views
    4,644

    Newbie question, insertSort algorithm

    Hi guys, I'm trying to compile the following code in Visual Studio 2010 Express for a simple implementation of insertSort:

    InsertSort.h
    =========

    template <class T>
    void isort(const T&...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured