typedef std::vector<int> list_int_t;
list_int_t array = list_int_t(1, 2, 3, 4, 5);
typedef std::vector<int> list_int_t;const int TEMP[] = {1, 2, 3, 4, 5};list_int_t array(TEMP, TEMP+5);
typedef std::vector<int> list_int_t;list_int_t array = {1, 2, 3, 4, 5};