Лабораторная работа. Численные классы цель работы: Изучить численных классов и разработка алгоритмов выполнения задач с этими списками. Поставленная задача



Download 48,85 Kb.
bet11/14
Sana12.07.2022
Hajmi48,85 Kb.
#783564
TuriЛабораторная работа
1   ...   6   7   8   9   10   11   12   13   14
Возвращаемое значение: эта функция ничего не возвращает.
Ниже программы иллюстрируют вышеуказанную функцию:
Программа 1: перенести все элементы списка.


// CPP program to illustrate the
// list::splice() function
#include
using namespace std;
int main()
{
// initializing lists
list l1 = { 1, 2, 3 };
list l2 = { 4, 5 };
list l3 = { 6, 7, 8 };
// transfer all the elements of l2
l1.splice(l1.begin(), l2);
// at the beginning of l1
cout << "list l1 after splice operation" << endl;
for (auto x : l1)
cout << x << " ";
// transfer all the elements of l1
l3.splice(l3.end(), l1);
// at the end of l3
cout << "\nlist l3 after splice operation" << endl;
for (auto x : l3)
cout << x << " ";
return 0;
}

Выход:
список l1 после операции соединения
4 5 1 2 3
список l3 после операции соединения
4 5 1 2 3 6 7 8
Программа 2: Перенос одного элемента.


// CPP program to illustrate the
// list::splice() function
#include
using namespace std;
int main()
{
// initializing lists and iterator
list l1 = { 1, 2, 3 };
list l2 = { 4, 5 };
list::iterator it;
// Iterator pointing to 4
it = l2.begin();
// transfer 4 at the end of l1
l1.splice(l1.end(), l2, it);
cout << "list l1 after splice operation" << endl;
for (auto x : l1)
cout << x << " ";
return 0;
}

Выход:
список l1 после операции соединения
1 2 3 4
Программа 3: Передача ряда элементов.


// CPP program to illustrate the
// list::splice() function
#include
using namespace std;
int main()
{
// initializing lists and iterator
list l1 = { 1, 2, 3, 4, 5 };
list l2 = { 6, 7, 8 };
list::iterator it;
// iterator pointing to 1
it = l1.begin();
// advance the iterator by 2 positions
advance(it, 2);
// transfer 3, 4 and 5 at the
// beginning of l2
l2.splice(l2.begin(), l2, it, l1.end());
cout << "list l2 after splice operation" << endl;
for (auto x : l2)
cout << x << " ";
return 0;
}


Download 48,85 Kb.

Do'stlaringiz bilan baham:
1   ...   6   7   8   9   10   11   12   13   14




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish