26
// agar ro’yxat bo’sh bo’lsa
if (current == NULL) {
*headRef = newNode;
}
else {
// aks holda
while (current->next != NULL) {
current = current->next;
}
current->next = newNode;
}
}
Berilgan dastur kodida ro’yxat bo’yicha oxirgi elementni topish uchun
qidirish tashkil etiladi, keyin esa uning ko’rsatkichi next yangi qo’shilgan
elementga o’rnatiladi.
Listing 11. Python tilida ro’yxat oxiridan element qo’shish
Do'stlaringiz bilan baham: