кодесурса
«C

Упражнения на C: вставка нового узла в начало односвязного списка

script1adsense2code
script1adsense3code

C связанный список: Упражнение 4 с решением

Напишите программу на C, чтобы вставить новый узел в начало односвязного списка.

Иллюстрированная презентация:

«C

Пример решения:

Код 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 NodeInsertatBegin(int num);	            //function to insert node at the beginning
void displayList();             //function to display the list
 
int main()
{
    int n,num;
		printf("\n\n Linked List : Insert a new node at the beginning of a 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();
    printf("\n Input data to insert at the beginning of the list : ");
    scanf("%d", &num);
    NodeInsertatBegin(num);
    printf("\n Data after inserted in the list 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;
            }
        }
    }
} 
void NodeInsertatBegin(int num)
{
    struct node *fnNode;
    fnNode = (struct node*)malloc(sizeof(struct node));
    if(fnNode == NULL)
    {
        printf(" Memory can not be allocated.");
    }
    else
    {
        fnNode->num = num; //Links the data part
        fnNode->nextptr = stnode; //Links the address part
        stnode = fnNode; //Makes stnode as first node
    }
}
void displayList()
{
    struct node *tmp;
    if(stnode == NULL)
    {
        printf(" No data found in the 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: 5                                                                                    
 Входные данные для узла 2: 6                                                                                    
 Входные данные для узла 3: 7                                                                                    
                                                                                                              
 Данные, введенные в список:                                                                               
 Данные = 5                                                                                                     
 Данные = 6                                                                                                     
 Данные = 7                                                                                                     
                                                                                                              
 Входные данные для вставки в начало списка: 4                                                        
                                                                                                              
 Данные после вставки в список:                                                                        
 Данные = 4                                                                                                     
 Данные = 5                                                                                                     
 Данные = 6                                                                                                     
 Данные = 7

Блок - схема:

«Блок-схема:

createNodeList ():

«Блок-схема:

NodeInsertatBegin ():

«Блок-схема:

displayList ():

«Блок-схема:

Редактор кода программирования C:

Есть другой способ решить это решение? Внесите свой код (и комментарии) через Disqus.

Предыдущий: Напишите программу на C, чтобы создать односвязный список из n узлов и подсчитать количество узлов.
Далее: написать программу на C для вставки нового узла в конец списка с однократной связью.

Каков уровень сложности этого упражнения?

Новый контент: Composer: менеджер зависимостей для PHP , R программирования


script1adsense4code
script1adsense5code
disqus2code
script1adsense6code
script1adsense7code
script1adsense8code
buysellads2code