Are you using a vector<int> for your linked list?
If so, if you want an array:
Qt Code:
vector<int> array[] = { vector<int> a, vector<int> b }; // Insert into a. array[0].push_back(1);To copy to clipboard, switch view to plain text mode
Are you using a vector<int> for your linked list?
If so, if you want an array:
Qt Code:
vector<int> array[] = { vector<int> a, vector<int> b }; // Insert into a. array[0].push_back(1);To copy to clipboard, switch view to plain text mode
Bookmarks