Упражнения на C: Удалить последний узел односвязного списка
C связанный список: Упражнение 9 с решением
Напишите программу на C, чтобы удалить последний узел Singlely Linked List.
Иллюстрированная презентация:
Пример решения:
Код C:
#include <stdio.h>
#include <stdlib.h>
struct node
{
int num; //Data of the node
struct node *nextptr; //Address of the node
}*stnode;
void createNodeList(int n); //function to create the list
void LastNodeDeletion(); //function to delete the last nodes
void displayList(); //function to display the list
int main()
{
int n,num,pos;
printf("\n\n Linked List : Delete the last node of Singly Linked List :\n");
printf("---------------------------------------------------------------\n");
printf(" Input the number of nodes : ");
scanf("%d", &n);
createNodeList(n);
printf("\n Data entered in the list are : \n");
displayList();
LastNodeDeletion();
printf("\n The new list after deletion the last node are : \n");
displayList();
return 0;
}
void createNodeList(int n)
{
struct node *fnNode, *tmp;
int num, i;
stnode = (struct node *)malloc(sizeof(struct node));
if(stnode == NULL) //check whether the stnode is NULL and if so no memory allocation
{
printf(" Memory can not be allocated.");
}
else
{
// reads data for the node through keyboard
printf(" Input data for node 1 : ");
scanf("%d", &num);
stnode-> num = num;
stnode-> nextptr = NULL; //Links the address field to NULL
tmp = stnode;
//Creates n nodes and adds to linked list
for(i=2; i<=n; i++)
{
fnNode = (struct node *)malloc(sizeof(struct node));
if(fnNode == NULL) //check whether the fnnode is NULL and if so no memory allocation
{
printf(" Memory can not be allocated.");
break;
}
else
{
printf(" Input data for node %d : ", i);
scanf(" %d", &num);
fnNode->num = num; // links the num field of fnNode with num
fnNode->nextptr = NULL; // links the address field of fnNode with NULL
tmp->nextptr = fnNode; // links previous node i.e. tmp to the fnNode
tmp = tmp->nextptr;
}
}
}
}
// Deletes the last node of the linked list
void LastNodeDeletion()
{
struct node *toDelLast, *preNode;
if(stnode == NULL)
{
printf(" There is no element in the list.");
}
else
{
toDelLast = stnode;
preNode = stnode;
/* Traverse to the last node of the list*/
while(toDelLast->nextptr != NULL)
{
preNode = toDelLast;
toDelLast = toDelLast->nextptr;
}
if(toDelLast == stnode)
{
stnode = NULL;
}
else
{
/* Disconnects the link of second last node with last node */
preNode->nextptr = NULL;
}
/* Delete the last node */
free(toDelLast);
}
}
// function to display the entire list
void displayList()
{
struct node *tmp;
if(stnode == NULL)
{
printf(" No data found in the empty list.");
}
else
{
tmp = stnode;
while(tmp != NULL)
{
printf(" Data = %d\n", tmp->num); // prints the data of current node
tmp = tmp->nextptr; // advances the position of current node
}
}
}
Пример вывода:
Связанный список: Удалить последний узел Единственного связанного списка: -------------------------------------------------- ------------- Введите количество узлов: 3 Входные данные для узла 1: 1 Входные данные для узла 2: 2 Входные данные для узла 3: 3 Данные, введенные в список: Данные = 1 Данные = 2 Данные = 3 Новый список после удаления последнего узла: Данные = 1 Данные = 2
Блок - схема:
createNodeList ():
LastNodeDeletion ():
displayList ():
Редактор кода программирования C:
Есть другой способ решить это решение? Внесите свой код (и комментарии) через Disqus.
Предыдущий: Напишите программу на C, чтобы удалить узел из середины односвязного списка.
Далее: Напишите программу на C для поиска существующего элемента в односвязном списке.
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code