When you declare a vector of anything it doesn't have any elements yet. Thus: v[i].push_back(j). is trying to insert j into a non-existent vector inside the ...
確定! 回上一頁