码迷,mamicode.com
首页 > 编程语言 > 详细

C语言链表——头插法和尾插法

时间:2021-02-03 11:00:00      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:else   null   define   list   ==   eof   warning   bsp   col   

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

typedef struct ListNode{
    int val;
    ListNode* next;
}Node_t, *pNode_t;

void print_list(ListNode *head) {
    ListNode *p = head;
    while (p != nullptr) {
        printf("%d ", p->val);
        p = p->next;
    }
}

void headInsert(pNode_t *p_p_head, pNode_t *p_p_tail, int val) {
    pNode_t pNew = (pNode_t)calloc(1,sizeof(Node_t));
    pNew->val = val;
    if (*p_p_head == NULL) {
        *p_p_head = pNew;
        *p_p_tail = pNew;
    }
    else {
        pNew->next = *p_p_head;
        *p_p_head = pNew;
    }
}

void tailInsert(pNode_t *p_p_head, pNode_t *p_p_tail, int val) {
    pNode_t pNew = (pNode_t)calloc(1, sizeof(Node_t));
    pNew->val = val;
    if (*p_p_head == NULL) {
        *p_p_head = pNew;
        *p_p_tail = pNew;
    }
    else {
        (*p_p_tail)->next = pNew;
        *p_p_tail = pNew;
    }
}

int main() {
    pNode_t head = nullptr;
    pNode_t tail = nullptr;
    int num = 0;
    while (scanf("%d", &num) != EOF) {
        tailInsert(&head, &tail, num);
    }
    print_list(head);
}

 

C语言链表——头插法和尾插法

标签:else   null   define   list   ==   eof   warning   bsp   col   

原文地址:https://www.cnblogs.com/Ping697/p/14364182.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!