【数据结构 1 单链表】

数据结构 1 单链表

#include <stdio.h>
#include <stdlib.h>

#define TURE 1
#define FALSE 0

/**
 * define the struct of node
 */
typedef struct Node{
    int data;
    struct Node* next;
}Node;

/**
 * initiate a single link list
 * @param null
 * @return return 
 */
Node* initaList()
{
    Node* Head  = (Node*)malloc(sizeof(Node));
    Head -> data  = 0;
    Head -> next  = NULL;
    return Head;
}

void HeadInsert(Node* list, int data)
{
    Node* node = (Node*)malloc(sizeof(Node));
    node -> next = list -> next;  //头结点是不动的,始终在前面
    node -> data = data;
    list -> next = node;
    list -> data++;
}

void TailInsert(Node* list, int data)
{
    Node* tepNode = list;
    while(tepNode -> next)
    {
        tepNode = tepNode -> next;
    }
    // for(int i = 0; i < list -> data; i++)
    // {
    //     tepNode = tepNode -> next;
    // }
    Node* node = (Node*)malloc(sizeof(Node));
    node -> next = NULL;
    node -> data = data;
    tepNode -> next = node;
    list -> data++;
}

void DeleteNumber(Node* list, int data)
{
    Node* PreNode = list;
    Node* node = list -> next;
    while(node)
    {
        if(node -> data == data)
        {
            PreNode -> next = node -> next;
            free(node);
            list -> data--;
            break;
        }
        
        PreNode = node;
        node = node -> next;

    }



    
}

void PrintList(Node* list)
{
    Node* node = list -> next;
    while(node)
    {
        printf("%d\t",node -> data);
        node = node -> next;
    }
}


void main(void)
{
    printf("--------------------Single link list test------------------\n\n\n");
    Node* List = initaList();
    for(int i = 0; i < 7; i++)
    {
        HeadInsert(List, i);
    }
    for(int j = 1; j < 7; j++)
    {
        TailInsert(List, j);
    }   
    
    PrintList(List);
    printf("\n\n-------delete 1\n\n");
    DeleteNumber(List, 4);
    PrintList(List);
    
    printf("\n\n\n------------------------------done--------------------------\n");    
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值