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

Search:

Type: Posts; User: laserlight

Search: Search took 0.12 seconds.

  1. Replies
    11
    Views
    8,747

    Re: design high-performance 3d dynamic array

    From what I understand, you just compared the element access time for the various containers against that of an array, since your own dynamic array library is currently in development and thus cannot...
  2. Replies
    11
    Views
    8,747

    Re: design high-performance 3d dynamic array

    Unfortunately, performance comparisions without enabling compiler optimisations can give misleading results. Furthermore, you must keep in mind that what you are testing differs in power from what...
  3. Replies
    11
    Views
    8,747

    Re: design high-performance 3d dynamic array

    The problem is that it looks like you are going to write your own version of std::vector<std::vector<std::vector<T> > >, except that it will probably have worse performance in some areas (e.g., when...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured