Vector [note]
Iterators begin() and end() নাম দেখেই বুঝতেছো begin = শুরু; end = শেষ। অর্থাৎ একটা ভেক্টরের শুরুর এলিমেন্ট কে begin() এবং শেষ এলিমেন্টকে নির্দেশ করে end() vector<int> v = {1, 2, 3, 4, 5}; vector<int>::iterator it; it = v.begin(); cout << "first el...
![Vector [note]](https://cdn.hashnode.com/res/hashnode/image/upload/v1724469691660/6fc2b9f6-92b6-4d5f-8543-1006e0aa4128.png)