[EMAIL PROTECTED] writes: > How do I allocate memory for a large (10,000+) fixed size array ?
Any way you wish: malloc(size); mmap(0, size, ... MAP_ANON, ...); std::vector<...> v(size); > In this case complexity is critical so I do not > want to use std:vector or some other dynamic structure. Come again? Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. _______________________________________________ help-gplusplus mailing list help-gplusplus@gnu.org http://lists.gnu.org/mailman/listinfo/help-gplusplus