Search found 1 match

by 7825JN
Mon Sep 30, 2002 12:27 pm
Forum: Volume 1 (100-199)
Topic: 102 - Ecological Bin Packing
Replies: 485
Views: 116609

102: Extreme MEMORY usage... WHY?? =))

This is the source for my solution to 102: it works, but with approx. 388 kb of memory spent. Why I cannot understand! Doesn't malloc anything, and no recursion... must be something tricky. Do you know what it can be??

/Lars

SOURCE:

#include <stdio.h>
#define MAP(x) ((x==1)? 2 : (x==2)? 1 : 0 ...

Go to advanced search