b***y 发帖数: 2799 | 1 ☆─────────────────────────────────────☆
slipper (ohh) 于 (Sat Oct 8 22:49:06 2005) 提到:
if not use array declaretion in c to construct a 3-dim array, is it possible
to use vector to construct a 3-dim array ?if so, how, can somebody point me to
some sample code? Thanks.
☆─────────────────────────────────────☆
aZhu (a+zhu) 于 (Sat Oct 8 22:55:44 2005) 提到:
vector a(n); //1-d
vector > a(n, vector (m)); //2-d, n * m
vector > > a (k, vector |
|