הוא משמש להוספת אלמנט חדש במיקום שצוין.
תחביר
שקול וקטור v. תחביר יהיה:
insert(iterator,val); insert(iterator,n,val); insert(iterator,InputIterator first,InputIterator last);
פָּרָמֶטֶר
ערך החזרה
הוא מחזיר איטרטור המצביע על האלמנט החדש שהוכנס.
דוגמה 1
בואו נראה דוגמה פשוטה.
#include #include using namespace std; int main() { vector v{'java'}; stringstr='programs'; v.insert(v.begin()+1,str); for(int i=0;i<v.size();i++) cout<<v[i]<<' '; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> java programs </pre> <p>In this example, string 'programs' is inserted in vector 'v' using insert() function.</p> <h2>Example 2</h2> <p>Let's see a simple example.</p> <pre> #include #include using namespace std; int main() { vector v{'C' ,'Tutorials'}; v.insert(v.begin()+1,2,'C'); for(int i=0;i<v.size();i++) cout<<v[i]<<' '; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> C CC Tutorials </pre> <h2>Example 3</h2> <p>Let's see a simple example.</p> <pre> #include #include using namespace std; int main() { vector v{1,2,3,4,5}; vector v1{6,7,8,9,10}; v.insert(v.end(),v1.begin(),v1.begin()+5); for(int i=0;i<v.size();i++) cout<<v[i]<<' '; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre></v.size();i++)></pre></v.size();i++)></pre></v.size();i++)>
בדוגמה זו, מחרוזת 'תוכניות' מוכנסת בוקטור 'v' באמצעות הפונקציה insert() .
דוגמה 2
בואו נראה דוגמה פשוטה.
#include #include using namespace std; int main() { vector v{'C' ,'Tutorials'}; v.insert(v.begin()+1,2,'C'); for(int i=0;i<v.size();i++) cout<<v[i]<<\' \'; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> C CC Tutorials </pre> <h2>Example 3</h2> <p>Let's see a simple example.</p> <pre> #include #include using namespace std; int main() { vector v{1,2,3,4,5}; vector v1{6,7,8,9,10}; v.insert(v.end(),v1.begin(),v1.begin()+5); for(int i=0;i<v.size();i++) cout<<v[i]<<\' \'; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre></v.size();i++)></pre></v.size();i++)>
דוגמה 3
בואו נראה דוגמה פשוטה.
#include #include using namespace std; int main() { vector v{1,2,3,4,5}; vector v1{6,7,8,9,10}; v.insert(v.end(),v1.begin(),v1.begin()+5); for(int i=0;i<v.size();i++) cout<<v[i]<<\' \'; return 0; } < pre> <p> <strong>Output:</strong> </p> <pre> 1 2 3 4 5 6 7 8 9 10 </pre></v.size();i++)>