数据结构中如何建立单链表的问题

日期:2018-03-05 11:58:57 人气:1

数据结构中如何建立单链表的问题

#include "stdio.h" #include typedef struct node { int data; struct node *next; } listnode; listnode* INITLIST() { listnode *hd=(listnode *)malloc(sizeof(listnode)); hd->next=NULL; return hd; } void CREALIST(listnod
    A+
热门评论