Answers for "c++ list get last element"

C++
9

java get last element of list

ArrayList<Integer> list = new ArrayList<Integer>(5); 
int last = list.get(list.size() - 1);
Posted by: Guest on May-30-2020
22

access last element in vector in c++

vector<int> v;
cout << v[v.size() - 1];
cout << *(v.end() - 1);
cout << *v.rbegin();
// all three of them work
Posted by: Guest on May-31-2020
4

how to get last element of set in c++

set<int> s = {1,2,3}
auto it = s.end();
it--;
cout<<*it<<"\n"; // This refers to last element of a set
Posted by: Guest on May-30-2020

Browse Popular Code Answers by Language