[提問]STL容器選擇
我現在有很多筆數據,要建出類似下面的結構,檔案讀進來後,要給我的程式使用。請問BCB6或STL裡用哪種容器比較合適,下面有我目前建的結構體。
程序代码:
typedef struct { std::string fileName; int width; int height; int depth; unsigned char *pData; } PictrueData; typedef struct { std::map <int, PictrueData *> personalPictrueData;; } PictrueGroup; std::map <int, PictrueGroup *> totalPictrueData;